mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
56d585567f
Fixed testPrefsObserver to use the correct requestId for unregistering observers. Changed all tests to use th same hexadecimal constant, per Kats's feedback. Asking for actual review now. Local robocop testing shows the failing tests on try now pass locally, so I'm assuming I have fixed the issues...
63 lines
2.2 KiB
Java
63 lines
2.2 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
import org.mozilla.gecko.gfx.GeckoLayerClient;
|
|
import org.mozilla.gecko.gfx.LayerView;
|
|
import org.mozilla.gecko.mozglue.GeckoLoader;
|
|
import org.mozilla.gecko.sqlite.SQLiteBridge;
|
|
import org.mozilla.gecko.util.GeckoEventListener;
|
|
|
|
import android.app.Activity;
|
|
import android.database.Cursor;
|
|
import android.view.View;
|
|
|
|
import java.nio.IntBuffer;
|
|
|
|
public class RobocopAPI {
|
|
private final GeckoApp mGeckoApp;
|
|
|
|
public RobocopAPI(Activity activity) {
|
|
mGeckoApp = (GeckoApp)activity;
|
|
}
|
|
|
|
public void registerEventListener(String event, GeckoEventListener listener) {
|
|
GeckoAppShell.registerEventListener(event, listener);
|
|
}
|
|
|
|
public void unregisterEventListener(String event, GeckoEventListener listener) {
|
|
GeckoAppShell.unregisterEventListener(event, listener);
|
|
}
|
|
|
|
public void broadcastEvent(String subject, String data) {
|
|
GeckoAppShell.sendEventToGecko(GeckoEvent.createBroadcastEvent(subject, data));
|
|
}
|
|
|
|
public void preferencesGetEvent(int requestId, String[] prefNames) {
|
|
GeckoAppShell.sendEventToGecko(GeckoEvent.createPreferencesGetEvent(requestId, prefNames));
|
|
}
|
|
|
|
public void preferencesObserveEvent(int requestId, String[] prefNames) {
|
|
GeckoAppShell.sendEventToGecko(GeckoEvent.createPreferencesObserveEvent(requestId, prefNames));
|
|
}
|
|
|
|
public void preferencesRemoveObserversEvent(int requestId) {
|
|
GeckoAppShell.sendEventToGecko(GeckoEvent.createPreferencesRemoveObserversEvent(requestId));
|
|
}
|
|
|
|
public void setDrawListener(GeckoLayerClient.DrawListener listener) {
|
|
GeckoAppShell.getLayerView().getLayerClient().setDrawListener(listener);
|
|
}
|
|
|
|
public Cursor querySql(String dbPath, String query) {
|
|
GeckoLoader.loadSQLiteLibs(mGeckoApp, mGeckoApp.getApplication().getPackageResourcePath());
|
|
return new SQLiteBridge(dbPath).rawQuery(query, null);
|
|
}
|
|
|
|
public IntBuffer getViewPixels(View view) {
|
|
return ((LayerView)view).getPixels();
|
|
}
|
|
}
|