Chromium Code Reviews| Index: remoting/android/java/src/org/chromium/chromoting/Desktop.java |
| diff --git a/remoting/android/java/src/org/chromium/chromoting/Desktop.java b/remoting/android/java/src/org/chromium/chromoting/Desktop.java |
| index 5753c8ffad44c13f5da3b061949187f05d63b5a8..3f1b549d697d8b467f3c8cd9eb33e8d52d66ef85 100644 |
| --- a/remoting/android/java/src/org/chromium/chromoting/Desktop.java |
| +++ b/remoting/android/java/src/org/chromium/chromoting/Desktop.java |
| @@ -70,10 +70,10 @@ public class Desktop extends ActionBarActivity implements View.OnSystemUiVisibil |
| @Override |
| protected void onPause() { |
| - if (isFinishing()) { |
| - mActivityLifecycleListener.onActivityPaused(this); |
| - } |
| - super.onPause(); |
| + if (isFinishing()) { |
| + mActivityLifecycleListener.onActivityPaused(this); |
|
whywhat
2014/10/15 23:12:38
nit: fits on one line I think?
aurimas (slooooooooow)
2014/10/15 23:29:48
Done.
|
| + } |
| + super.onPause(); |
| } |
| @Override |
| @@ -252,7 +252,7 @@ public class Desktop extends ActionBarActivity implements View.OnSystemUiVisibil |
| !event.isCtrlPressed() && !event.isMetaPressed(); |
| if (event.getDeviceId() == KeyCharacterMap.VIRTUAL_KEYBOARD && |
| - pressed && unicode != 0 && no_modifiers) { |
| + pressed && unicode != 0 && no_modifiers) { |
| mPressedTextKeys.add(keyCode); |
| int[] codePoints = { unicode }; |
| JniInterface.sendTextEvent(new String(codePoints, 0, 1)); |