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 1889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1900 | 1900 |
1901 // If true, cloud policy for the user is loaded once the user signs in. | 1901 // If true, cloud policy for the user is loaded once the user signs in. |
1902 const char kLoadCloudPolicyOnSignin[] = "policy.load_cloud_policy_on_signin"; | 1902 const char kLoadCloudPolicyOnSignin[] = "policy.load_cloud_policy_on_signin"; |
1903 | 1903 |
1904 // Indicates that factory reset was requested from options page. | 1904 // Indicates that factory reset was requested from options page. |
1905 const char kFactoryResetRequested[] = "FactoryResetRequested"; | 1905 const char kFactoryResetRequested[] = "FactoryResetRequested"; |
1906 | 1906 |
1907 // *************** SERVICE PREFS *************** | 1907 // *************** SERVICE PREFS *************** |
1908 // These are attached to the service process. | 1908 // These are attached to the service process. |
1909 | 1909 |
| 1910 const char kCloudPrintRoot[] = "cloud_print"; |
1910 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 1911 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
1911 // The unique id for this instance of the cloud print proxy. | 1912 // The unique id for this instance of the cloud print proxy. |
1912 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 1913 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
1913 // The GAIA auth token for Cloud Print | 1914 // The GAIA auth token for Cloud Print |
1914 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 1915 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
1915 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 1916 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
1916 // This should eventually go away because the above token should work for both. | 1917 // This should eventually go away because the above token should work for both. |
1917 const char kCloudPrintXMPPAuthToken[] = "cloud_print.xmpp_auth_token"; | 1918 const char kCloudPrintXMPPAuthToken[] = "cloud_print.xmpp_auth_token"; |
1918 // The email address of the account used to authenticate with the Cloud Print | 1919 // The email address of the account used to authenticate with the Cloud Print |
1919 // server. | 1920 // server. |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2105 // Tracks the time of the last shown warning. Used to reset | 2106 // Tracks the time of the last shown warning. Used to reset |
2106 // |network_profile.warnings_left| after a silence period. | 2107 // |network_profile.warnings_left| after a silence period. |
2107 const char kNetworkProfileLastWarningTime[] = | 2108 const char kNetworkProfileLastWarningTime[] = |
2108 "network_profile.last_warning_time"; | 2109 "network_profile.last_warning_time"; |
2109 | 2110 |
2110 // 64-bit serialization of the time last policy usage statistics were collected | 2111 // 64-bit serialization of the time last policy usage statistics were collected |
2111 // by UMA_HISTOGRAM_ENUMERATION. | 2112 // by UMA_HISTOGRAM_ENUMERATION. |
2112 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2113 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2113 | 2114 |
2114 } // namespace prefs | 2115 } // namespace prefs |
OLD | NEW |