| 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 1922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1933 const char kCloudPrintXmppPingTimeout[] = "cloud_print.xmpp_ping_timeout_sec"; | 1933 const char kCloudPrintXmppPingTimeout[] = "cloud_print.xmpp_ping_timeout_sec"; |
| 1934 // Dictionary with settings stored by connector setup page. | 1934 // Dictionary with settings stored by connector setup page. |
| 1935 const char kCloudPrintUserSettings[] = "cloud_print.user_settings"; | 1935 const char kCloudPrintUserSettings[] = "cloud_print.user_settings"; |
| 1936 // List of printers settings. | 1936 // List of printers settings. |
| 1937 const char kCloudPrintPrinters[] = "cloud_print.user_settings.printers"; | 1937 const char kCloudPrintPrinters[] = "cloud_print.user_settings.printers"; |
| 1938 // A boolean indicating whether submitting jobs to Google Cloud Print is | 1938 // A boolean indicating whether submitting jobs to Google Cloud Print is |
| 1939 // blocked by policy. | 1939 // blocked by policy. |
| 1940 const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled"; | 1940 const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled"; |
| 1941 | 1941 |
| 1942 // Preference to store proxy settings. | 1942 // Preference to store proxy settings. |
| 1943 const char kProxy[] = "proxy"; | |
| 1944 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 1943 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
| 1945 | 1944 |
| 1946 #if defined(OS_MACOSX) | 1945 #if defined(OS_MACOSX) |
| 1947 // Set to true if the user removed our login item so we should not create a new | 1946 // Set to true if the user removed our login item so we should not create a new |
| 1948 // one when uninstalling background apps. | 1947 // one when uninstalling background apps. |
| 1949 const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item"; | 1948 const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item"; |
| 1950 | 1949 |
| 1951 // Set to true if Chrome already created a login item, so there's no need to | 1950 // Set to true if Chrome already created a login item, so there's no need to |
| 1952 // create another one. | 1951 // create another one. |
| 1953 const char kChromeCreatedLoginItem[] = | 1952 const char kChromeCreatedLoginItem[] = |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2222 "supervised_users.whitelists"; | 2221 "supervised_users.whitelists"; |
| 2223 | 2222 |
| 2224 #if defined(ENABLE_EXTENSIONS) | 2223 #if defined(ENABLE_EXTENSIONS) |
| 2225 // Policy that indicates how to handle animated images. | 2224 // Policy that indicates how to handle animated images. |
| 2226 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2225 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2227 #endif | 2226 #endif |
| 2228 | 2227 |
| 2229 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2228 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2230 | 2229 |
| 2231 } // namespace prefs | 2230 } // namespace prefs |
| OLD | NEW |