| Index: chrome/android/java/src/org/chromium/chrome/browser/ApplicationInitialization.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ApplicationInitialization.java b/chrome/android/java/src/org/chromium/chrome/browser/ApplicationInitialization.java
|
| index b490a8693809b0406b6855486053af7c4a862460..9f15f0e4de57c60a5070307c4d374c8ea5332aea 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/ApplicationInitialization.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/ApplicationInitialization.java
|
| @@ -35,10 +35,10 @@ public final class ApplicationInitialization {
|
| if (commandLine.hasSwitch(ChromeSwitches.DISABLE_FULLSCREEN)) return;
|
|
|
| TypedValue threshold = new TypedValue();
|
| - resources.getValue(R.floats.top_controls_show_threshold, threshold, true);
|
| + resources.getValue(R.dimen.top_controls_show_threshold, threshold, true);
|
| commandLine.appendSwitchWithValue(
|
| ContentSwitches.TOP_CONTROLS_SHOW_THRESHOLD, threshold.coerceToString().toString());
|
| - resources.getValue(R.floats.top_controls_hide_threshold, threshold, true);
|
| + resources.getValue(R.dimen.top_controls_hide_threshold, threshold, true);
|
| commandLine.appendSwitchWithValue(
|
| ContentSwitches.TOP_CONTROLS_HIDE_THRESHOLD, threshold.coerceToString().toString());
|
| }
|
|
|