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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1891 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). | 1891 // Boolean indicating whether tabstrip uses stacked layout (on touch devices). |
1892 // Defaults to false. | 1892 // Defaults to false. |
1893 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; | 1893 const char kTabStripStackedLayout[] = "tab-strip-stacked-layout"; |
1894 | 1894 |
1895 // Indicates that factory reset was requested from options page or reset screen. | 1895 // Indicates that factory reset was requested from options page or reset screen. |
1896 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 1896 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
1897 | 1897 |
1898 // Indicates that debugging features were requested from oobe screen. | 1898 // Indicates that debugging features were requested from oobe screen. |
1899 const char kDebuggingFeaturesRequested[] = "DebuggingFeaturesRequested"; | 1899 const char kDebuggingFeaturesRequested[] = "DebuggingFeaturesRequested"; |
1900 | 1900 |
1901 // Boolean recording whether we have showed a balloon that calls out the message | |
1902 // center for desktop notifications. | |
1903 const char kMessageCenterShowedFirstRunBalloon[] = | |
1904 "message_center.showed_first_run_balloon"; | |
1905 | |
1906 // Boolean recording whether the user has disabled the notifications | |
1907 // menubar or systray icon. | |
1908 const char kMessageCenterShowIcon[] = "message_center.show_icon"; | |
1909 | |
1910 const char kMessageCenterForcedOnTaskbar[] = | |
1911 "message_center.was_forced_on_taskbar"; | |
1912 | |
1913 #if defined(OS_CHROMEOS) | 1901 #if defined(OS_CHROMEOS) |
1914 // This setting starts periodic timezone refresh when not in user session. | 1902 // This setting starts periodic timezone refresh when not in user session. |
1915 // (user session is controlled by user profile preference | 1903 // (user session is controlled by user profile preference |
1916 // kResolveTimezoneByGeolocation | 1904 // kResolveTimezoneByGeolocation |
1917 const char kResolveDeviceTimezoneByGeolocation[] = | 1905 const char kResolveDeviceTimezoneByGeolocation[] = |
1918 "settings.resolve_device_timezone_by_geolocation"; | 1906 "settings.resolve_device_timezone_by_geolocation"; |
1919 #endif // defined(OS_CHROMEOS) | 1907 #endif // defined(OS_CHROMEOS) |
1920 | 1908 |
1921 // *************** SERVICE PREFS *************** | 1909 // *************** SERVICE PREFS *************** |
1922 // These are attached to the service process. | 1910 // These are attached to the service process. |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2235 "supervised_users.whitelists"; | 2223 "supervised_users.whitelists"; |
2236 | 2224 |
2237 #if defined(ENABLE_EXTENSIONS) | 2225 #if defined(ENABLE_EXTENSIONS) |
2238 // Policy that indicates how to handle animated images. | 2226 // Policy that indicates how to handle animated images. |
2239 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2227 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2240 #endif | 2228 #endif |
2241 | 2229 |
2242 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2230 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2243 | 2231 |
2244 } // namespace prefs | 2232 } // namespace prefs |
OLD | NEW |