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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 | 760 |
761 // 64-bit integer serialization of the base::Time when the last sync occurred. | 761 // 64-bit integer serialization of the base::Time when the last sync occurred. |
762 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 762 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
763 | 763 |
764 // Boolean specifying whether the user finished setting up sync. | 764 // Boolean specifying whether the user finished setting up sync. |
765 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 765 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
766 | 766 |
767 // Booleans specifying whether the user has selected to sync the following | 767 // Booleans specifying whether the user has selected to sync the following |
768 // datatypes. | 768 // datatypes. |
769 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; | 769 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; |
| 770 const wchar_t kSyncPasswords[] = L"sync.passwords"; |
770 const wchar_t kSyncPreferences[] = L"sync.preferences"; | 771 const wchar_t kSyncPreferences[] = L"sync.preferences"; |
771 const wchar_t kSyncAutofill[] = L"sync.autofill"; | 772 const wchar_t kSyncAutofill[] = L"sync.autofill"; |
772 const wchar_t kSyncThemes[] = L"sync.themes"; | 773 const wchar_t kSyncThemes[] = L"sync.themes"; |
773 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; | 774 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; |
774 | 775 |
775 // Whether sync auth was bootstrapped for Chrome OS. | 776 // Whether sync auth was bootstrapped for Chrome OS. |
776 const wchar_t kSyncBootstrappedAuth[] = L"sync.bootstrapped_auth"; | 777 const wchar_t kSyncBootstrappedAuth[] = L"sync.bootstrapped_auth"; |
777 | 778 |
778 // Create web application shortcut dialog preferences. | 779 // Create web application shortcut dialog preferences. |
779 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; | 780 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; |
(...skipping 12 matching lines...) Expand all Loading... |
792 | 793 |
793 // The root URL of the cloud print service. | 794 // The root URL of the cloud print service. |
794 const wchar_t kCloudPrintServiceURL[] = L"cloud_print.service_url"; | 795 const wchar_t kCloudPrintServiceURL[] = L"cloud_print.service_url"; |
795 // The unique id for this instance of the cloud print proxy. | 796 // The unique id for this instance of the cloud print proxy. |
796 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 797 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
797 // The human-readable name of the Cloud Print proxy. User-supplied. | 798 // The human-readable name of the Cloud Print proxy. User-supplied. |
798 const wchar_t kCloudPrintProxyName[] = L"cloud_print.proxy_name"; | 799 const wchar_t kCloudPrintProxyName[] = L"cloud_print.proxy_name"; |
799 // The GAIA auth token (we may need to move it outside of prefs) | 800 // The GAIA auth token (we may need to move it outside of prefs) |
800 const wchar_t kCloudPrintAuthToken[] = L"cloud_print_auth_token"; | 801 const wchar_t kCloudPrintAuthToken[] = L"cloud_print_auth_token"; |
801 } // namespace prefs | 802 } // namespace prefs |
OLD | NEW |