| Index: content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java b/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| index 1398c84abd1fb5c16d6aa2fb4e8acd8dce75ff14..79b8ddbb7b366045c553d47fd21c89c4c55d0211 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ScreenOrientationListener.java
|
| @@ -107,8 +107,7 @@ public class ScreenOrientationListener {
|
| public void startAccurateListening() {
|
| ++mAccurateCount;
|
|
|
| - if (mAccurateCount > 1)
|
| - return;
|
| + if (mAccurateCount > 1) return;
|
|
|
| // Start polling if we went from 0 to 1. The polling will
|
| // automatically stop when mAccurateCount reaches 0.
|
| @@ -118,8 +117,7 @@ public class ScreenOrientationListener {
|
| public void run() {
|
| self.onConfigurationChanged(null);
|
|
|
| - if (self.mAccurateCount < 1)
|
| - return;
|
| + if (self.mAccurateCount < 1) return;
|
|
|
| ThreadUtils.postOnUiThreadDelayed(this,
|
| ScreenOrientationConfigurationListener.POLLING_DELAY);
|
|
|