Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4219)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerFeedbackReporter.java

Issue 893483002: Make infobars hide on scroll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Observer removal Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerFeedbackReporter.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerFeedbackReporter.java b/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerFeedbackReporter.java
index 858689e46dc9fa05f771a885ec869506dbc71d17..70f1eb733074c0482f0af8cb057e837e181f2072 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerFeedbackReporter.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerFeedbackReporter.java
@@ -46,8 +46,8 @@ public final class DomDistillerFeedbackReporter implements
* @return whether the DOM Distiller feature is enabled.
*/
public static boolean isEnabled() {
- return (ChromeVersionInfo.isLocalBuild() || ChromeVersionInfo.isDevBuild()) &&
- nativeIsEnabled();
+ return (ChromeVersionInfo.isLocalBuild() || ChromeVersionInfo.isDevBuild())
+ && nativeIsEnabled();
}
/**

Powered by Google App Engine
This is Rietveld 408576698