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 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1011 // corresponding access token. | 1011 // corresponding access token. |
1012 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 1012 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
1013 | 1013 |
1014 // Whether PasswordForms have been migrated from the WedDataService to the | 1014 // Whether PasswordForms have been migrated from the WedDataService to the |
1015 // LoginDatabase. | 1015 // LoginDatabase. |
1016 const char kLoginDatabaseMigrated[] = "login_database.migrated"; | 1016 const char kLoginDatabaseMigrated[] = "login_database.migrated"; |
1017 | 1017 |
1018 // The root URL of the cloud print service. | 1018 // The root URL of the cloud print service. |
1019 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1019 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
1020 | 1020 |
| 1021 // The last requested size of the dialog as it was closed. |
| 1022 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
| 1023 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
| 1024 |
1021 const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; | 1025 const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; |
1022 | 1026 |
1023 // The list of BackgroundContents that should be loaded when the browser | 1027 // The list of BackgroundContents that should be loaded when the browser |
1024 // launches. | 1028 // launches. |
1025 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1029 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
1026 | 1030 |
1027 #if defined(OS_CHROMEOS) | 1031 #if defined(OS_CHROMEOS) |
1028 // Dictionary for transient storage of settings that should go into signed | 1032 // Dictionary for transient storage of settings that should go into signed |
1029 // settings storage before owner has been assigned. | 1033 // settings storage before owner has been assigned. |
1030 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; | 1034 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; |
(...skipping 28 matching lines...) Expand all Loading... |
1059 // String specifying the proxy server. For a specification of the expected | 1063 // String specifying the proxy server. For a specification of the expected |
1060 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 1064 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
1061 const char kProxyServer[] = "proxy.server"; | 1065 const char kProxyServer[] = "proxy.server"; |
1062 // URL to the proxy .pac file. | 1066 // URL to the proxy .pac file. |
1063 const char kProxyPacUrl[] = "proxy.pac_url"; | 1067 const char kProxyPacUrl[] = "proxy.pac_url"; |
1064 // String containing proxy bypass rules. For a specification of the | 1068 // String containing proxy bypass rules. For a specification of the |
1065 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 1069 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
1066 const char kProxyBypassList[] = "proxy.bypass_list"; | 1070 const char kProxyBypassList[] = "proxy.bypass_list"; |
1067 | 1071 |
1068 } // namespace prefs | 1072 } // namespace prefs |
OLD | NEW |