OLD | NEW |
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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
865 // Modifying bookmarks is completely disabled when this is set to false. | 865 // Modifying bookmarks is completely disabled when this is set to false. |
866 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; | 866 const char kEditBookmarksEnabled[] = "bookmarks.editing_enabled"; |
867 | 867 |
868 // Boolean that is true when the translate feature is enabled. | 868 // Boolean that is true when the translate feature is enabled. |
869 const char kEnableTranslate[] = "translate.enabled"; | 869 const char kEnableTranslate[] = "translate.enabled"; |
870 | 870 |
871 #if !defined(OS_ANDROID) | 871 #if !defined(OS_ANDROID) |
872 const char kPinnedTabs[] = "pinned_tabs"; | 872 const char kPinnedTabs[] = "pinned_tabs"; |
873 #endif | 873 #endif |
874 | 874 |
875 // Boolean that is true when HTTP throttling is enabled. | |
876 const char kHttpThrottlingEnabled[] = "http_throttling.enabled"; | |
877 | |
878 // Integer containing the default Geolocation content setting. | 875 // Integer containing the default Geolocation content setting. |
879 const char kGeolocationDefaultContentSetting[] = | 876 const char kGeolocationDefaultContentSetting[] = |
880 "geolocation.default_content_setting"; | 877 "geolocation.default_content_setting"; |
881 | 878 |
882 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. | 879 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. |
883 const char kGeolocationContentSettings[] = "geolocation.content_settings"; | 880 const char kGeolocationContentSettings[] = "geolocation.content_settings"; |
884 | 881 |
885 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 882 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
886 const char kDisable3DAPIs[] = "disable_3d_apis"; | 883 const char kDisable3DAPIs[] = "disable_3d_apis"; |
887 | 884 |
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |