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

Unified Diff: content/public/android/java/src/org/chromium/content/common/CommandLine.java

Issue 12210050: Expose FS show/hide thresholds to Command Line (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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: content/public/android/java/src/org/chromium/content/common/CommandLine.java
diff --git a/content/public/android/java/src/org/chromium/content/common/CommandLine.java b/content/public/android/java/src/org/chromium/content/common/CommandLine.java
index ceb1d55fc5065ab191e9aa5432305d3b1ea0d4b7..179fd4ec7fc6a496e50107b794068442ed819fbc 100644
--- a/content/public/android/java/src/org/chromium/content/common/CommandLine.java
+++ b/content/public/android/java/src/org/chromium/content/common/CommandLine.java
@@ -66,6 +66,12 @@ public abstract class CommandLine {
// The height of the movable top controls.
public static final String TOP_CONTROLS_HEIGHT = "top-controls-height";
+ // How much of the top controls need to be shown before they will auto show.
+ public static final String TOP_CONTROLS_SHOW_THRESHOLD = "top-controls-show-threshold";
+
+ // How much of the top controls need to be hidden before they will auto hide.
+ public static final String TOP_CONTROLS_HIDE_THRESHOLD = "top-controls-hide-threshold";
+
// Public abstract interface, implemented in derived classes.
// All these methods reflect their native-side counterparts.
/**

Powered by Google App Engine
This is Rietveld 408576698