| 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 822 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 823 | 823 |
| 824 // Booleans specifying whether the user has selected to sync the following | 824 // Booleans specifying whether the user has selected to sync the following |
| 825 // datatypes. | 825 // datatypes. |
| 826 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; | 826 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; |
| 827 const wchar_t kSyncPasswords[] = L"sync.passwords"; | 827 const wchar_t kSyncPasswords[] = L"sync.passwords"; |
| 828 const wchar_t kSyncPreferences[] = L"sync.preferences"; | 828 const wchar_t kSyncPreferences[] = L"sync.preferences"; |
| 829 const wchar_t kSyncAutofill[] = L"sync.autofill"; | 829 const wchar_t kSyncAutofill[] = L"sync.autofill"; |
| 830 const wchar_t kSyncThemes[] = L"sync.themes"; | 830 const wchar_t kSyncThemes[] = L"sync.themes"; |
| 831 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; | 831 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; |
| 832 const wchar_t kSyncExtensions[] = L"sync.extensions"; |
| 832 | 833 |
| 833 // Create web application shortcut dialog preferences. | 834 // Create web application shortcut dialog preferences. |
| 834 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; | 835 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; |
| 835 const wchar_t kWebAppCreateInAppsMenu[] = | 836 const wchar_t kWebAppCreateInAppsMenu[] = |
| 836 L"browser.web_app.create_in_apps_menu"; | 837 L"browser.web_app.create_in_apps_menu"; |
| 837 const wchar_t kWebAppCreateInQuickLaunchBar[] = | 838 const wchar_t kWebAppCreateInQuickLaunchBar[] = |
| 838 L"browser.web_app.create_in_quick_launch_bar"; | 839 L"browser.web_app.create_in_quick_launch_bar"; |
| 839 | 840 |
| 840 // Dictionary that maps Geolocation network provider server URLs to | 841 // Dictionary that maps Geolocation network provider server URLs to |
| 841 // corresponding access token. | 842 // corresponding access token. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 855 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 856 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
| 856 // The GAIA auth token for Cloud Print | 857 // The GAIA auth token for Cloud Print |
| 857 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; | 858 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; |
| 858 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 859 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| 859 // This should eventually go away because the above token should work for both. | 860 // This should eventually go away because the above token should work for both. |
| 860 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; | 861 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; |
| 861 // The email address of the account used to authenticate with the Cloud Print | 862 // The email address of the account used to authenticate with the Cloud Print |
| 862 // server. | 863 // server. |
| 863 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; | 864 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; |
| 864 } // namespace prefs | 865 } // namespace prefs |
| OLD | NEW |