summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/BrowserSettings.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/browser/BrowserSettings.java')
-rw-r--r--src/com/android/browser/BrowserSettings.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/com/android/browser/BrowserSettings.java b/src/com/android/browser/BrowserSettings.java
index c0336470..0318f8f5 100644
--- a/src/com/android/browser/BrowserSettings.java
+++ b/src/com/android/browser/BrowserSettings.java
@@ -427,10 +427,6 @@ public class BrowserSettings implements OnSharedPreferenceChangeListener,
if (mController != null && mController.getUi() != null) {
mController.getUi().setFullscreen(useFullscreen());
}
- } else if (PREF_ENABLE_QUICK_CONTROLS.equals(key)) {
- if (mController != null && mController.getUi() != null) {
- mController.getUi().setUseQuickControls(sharedPreferences.getBoolean(key, false));
- }
} else if (PREF_LINK_PREFETCH.equals(key)) {
updateConnectionType();
}
@@ -958,10 +954,6 @@ public class BrowserSettings implements OnSharedPreferenceChangeListener,
// getter/setters for lab_preferences.xml
// -----------------------------
- public boolean useQuickControls() {
- return mPrefs.getBoolean(PREF_ENABLE_QUICK_CONTROLS, false);
- }
-
public boolean useMostVisitedHomepage() {
return HomeProvider.MOST_VISITED.equals(getHomePage());
}