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

Side by Side Diff: chrome/common/pref_names.cc

Issue 10273012: ash: Fix shelf auto hide behavior not persisted regression. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1793 const char kComponentUpdaterState[] = "component_updater.state"; 1793 const char kComponentUpdaterState[] = "component_updater.state";
1794 1794
1795 // Boolean pref indicating whether the session restore dialog has been shown. 1795 // Boolean pref indicating whether the session restore dialog has been shown.
1796 const char kRestoreSessionStateDialogShown[] = 1796 const char kRestoreSessionStateDialogShown[] =
1797 "restore_session_state.dialog_shown"; 1797 "restore_session_state.dialog_shown";
1798 1798
1799 // Boolean that is true if Web Intents is enabled. 1799 // Boolean that is true if Web Intents is enabled.
1800 const char kWebIntentsEnabled[] = "webintents.enabled"; 1800 const char kWebIntentsEnabled[] = "webintents.enabled";
1801 1801
1802 #if defined(USE_AURA) 1802 #if defined(USE_AURA)
1803 // Boolean value indicating whether the shelf always hides.
1804 const char kAlwaysAutoHideShelf[] =
1805 "auto_hide_shelf";
1806 // String value corresponding to ash::Shell::ShelfAutoHideBehavior. 1803 // String value corresponding to ash::Shell::ShelfAutoHideBehavior.
1807 const char kShelfAutoHideBehavior[] = 1804 const char kShelfAutoHideBehavior[] =
1808 "auto_hide_behavior"; 1805 "auto_hide_behavior";
1809 // Boolean value indicating whether to use default pinned apps. 1806 // Boolean value indicating whether to use default pinned apps.
1810 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps"; 1807 const char kUseDefaultPinnedApps[] = "use_default_pinned_apps";
1811 const char kPinnedLauncherApps[] = 1808 const char kPinnedLauncherApps[] =
1812 "pinned_launcher_apps"; 1809 "pinned_launcher_apps";
1813 1810
1814 const char kLongPressTimeInSeconds[] = 1811 const char kLongPressTimeInSeconds[] =
1815 "gesture.long_press_time_in_seconds"; 1812 "gesture.long_press_time_in_seconds";
(...skipping 26 matching lines...) Expand all
1842 const char kRailBreakProportion[] = 1839 const char kRailBreakProportion[] =
1843 "gesture.rail_break_proportion"; 1840 "gesture.rail_break_proportion";
1844 const char kRailStartProportion[] = 1841 const char kRailStartProportion[] =
1845 "gesture.rail_start_proportion"; 1842 "gesture.rail_start_proportion";
1846 #endif 1843 #endif
1847 1844
1848 // Indicates whether the browser is in managed mode. 1845 // Indicates whether the browser is in managed mode.
1849 const char kInManagedMode[] = "managed_mode"; 1846 const char kInManagedMode[] = "managed_mode";
1850 1847
1851 } // namespace prefs 1848 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698