зеркало из https://github.com/mozilla/pjs.git
Bug 719309 - Follow up. Rename a variable. r=mfinkle
This commit is contained in:
Родитель
77409e4d31
Коммит
99cfefcb85
|
@ -77,7 +77,7 @@ public class LayerView extends GLSurfaceView
|
|||
private static String LOGTAG = "GeckoLayerView";
|
||||
/* List of events to be processed if the page does not prevent them. Should only be touched on the main thread */
|
||||
private LinkedList<MotionEvent> mEventQueue = new LinkedList<MotionEvent>();
|
||||
private boolean sendTouchEvents = false;
|
||||
private boolean touchEventsEnabled = false;
|
||||
private String touchEventsPrefName = "dom.w3c_touch_events.enabled";
|
||||
|
||||
public LayerView(Context context, LayerController controller) {
|
||||
|
@ -112,7 +112,7 @@ public class LayerView extends GLSurfaceView
|
|||
JSONObject jPref = jsonPrefs.getJSONObject(i);
|
||||
final String prefName = jPref.getString("name");
|
||||
if (prefName.equals(touchEventsPrefName)) {
|
||||
sendTouchEvents = jPref.getBoolean("value");
|
||||
touchEventsEnabled = jPref.getBoolean("value");
|
||||
GeckoAppShell.unregisterGeckoEventListener("Preferences:Data", this);
|
||||
}
|
||||
}
|
||||
|
@ -141,7 +141,7 @@ public class LayerView extends GLSurfaceView
|
|||
|
||||
@Override
|
||||
public boolean onTouchEvent(MotionEvent event) {
|
||||
if (sendTouchEvents && mController.onTouchEvent(event)) {
|
||||
if (touchEventsEnabled && mController.onTouchEvent(event)) {
|
||||
addToEventQueue(event);
|
||||
return true;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче