| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 // corresponding access token. | 1000 // corresponding access token. |
| 1001 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 1001 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
| 1002 | 1002 |
| 1003 // Whether PasswordForms have been migrated from the WedDataService to the | 1003 // Whether PasswordForms have been migrated from the WedDataService to the |
| 1004 // LoginDatabase. | 1004 // LoginDatabase. |
| 1005 const char kLoginDatabaseMigrated[] = "login_database.migrated"; | 1005 const char kLoginDatabaseMigrated[] = "login_database.migrated"; |
| 1006 | 1006 |
| 1007 // The root URL of the cloud print service. | 1007 // The root URL of the cloud print service. |
| 1008 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1008 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
| 1009 | 1009 |
| 1010 // The last requested size of the dialog as it was closed. |
| 1011 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
| 1012 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
| 1013 |
| 1010 const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; | 1014 const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; |
| 1011 | 1015 |
| 1012 // The list of BackgroundContents that should be loaded when the browser | 1016 // The list of BackgroundContents that should be loaded when the browser |
| 1013 // launches. | 1017 // launches. |
| 1014 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1018 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1015 | 1019 |
| 1016 #if defined(OS_CHROMEOS) | 1020 #if defined(OS_CHROMEOS) |
| 1017 // Dictionary for transient storage of settings that should go into signed | 1021 // Dictionary for transient storage of settings that should go into signed |
| 1018 // settings storage before owner has been assigned. | 1022 // settings storage before owner has been assigned. |
| 1019 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; | 1023 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1048 // String specifying the proxy server. For a specification of the expected | 1052 // String specifying the proxy server. For a specification of the expected |
| 1049 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 1053 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 1050 const char kProxyServer[] = "proxy.server"; | 1054 const char kProxyServer[] = "proxy.server"; |
| 1051 // URL to the proxy .pac file. | 1055 // URL to the proxy .pac file. |
| 1052 const char kProxyPacUrl[] = "proxy.pac_url"; | 1056 const char kProxyPacUrl[] = "proxy.pac_url"; |
| 1053 // String containing proxy bypass rules. For a specification of the | 1057 // String containing proxy bypass rules. For a specification of the |
| 1054 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 1058 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 1055 const char kProxyBypassList[] = "proxy.bypass_list"; | 1059 const char kProxyBypassList[] = "proxy.bypass_list"; |
| 1056 | 1060 |
| 1057 } // namespace prefs | 1061 } // namespace prefs |
| OLD | NEW |