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 e21fccf04dcac6fe20b6de2c5d10875e6745c833..32ae2cdba00ec6f81e20ef867735942a63527252 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 |
@@ -61,6 +61,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. |
/** |