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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 | 700 |
701 // Integer that specifies the index of the tab the user was on when they | 701 // Integer that specifies the index of the tab the user was on when they |
702 // last visited the options window. | 702 // last visited the options window. |
703 const wchar_t kOptionsWindowLastTabIndex[] = L"options_window.last_tab_index"; | 703 const wchar_t kOptionsWindowLastTabIndex[] = L"options_window.last_tab_index"; |
704 | 704 |
705 // Integer that specifies the index of the tab the user was on when they | 705 // Integer that specifies the index of the tab the user was on when they |
706 // last visited the content settings window. | 706 // last visited the content settings window. |
707 const wchar_t kContentSettingsWindowLastTabIndex[] = | 707 const wchar_t kContentSettingsWindowLastTabIndex[] = |
708 L"content_settings_window.last_tab_index"; | 708 L"content_settings_window.last_tab_index"; |
709 | 709 |
| 710 // Integer that specifies the index of the tab the user was on when they |
| 711 // last visited the Certificate Manager window. |
| 712 const wchar_t kCertificateManagerWindowLastTabIndex[] = |
| 713 L"certificate_manager_window.last_tab_index"; |
| 714 |
710 // The mere fact that this pref is registered signals that we should show the | 715 // The mere fact that this pref is registered signals that we should show the |
711 // First Run Search Information bubble when the first browser window appears. | 716 // First Run Search Information bubble when the first browser window appears. |
712 // This preference is only registered by the first-run procedure. | 717 // This preference is only registered by the first-run procedure. |
713 const wchar_t kShouldShowFirstRunBubble[] = L"show-first-run-bubble"; | 718 const wchar_t kShouldShowFirstRunBubble[] = L"show-first-run-bubble"; |
714 | 719 |
715 // The mere fact that this pref is registered signals that we should show the | 720 // The mere fact that this pref is registered signals that we should show the |
716 // smaller OEM First Run Search Information bubble when the first | 721 // smaller OEM First Run Search Information bubble when the first |
717 // browser window appears. | 722 // browser window appears. |
718 // This preference is only registered by the first-run procedure. | 723 // This preference is only registered by the first-run procedure. |
719 const wchar_t kShouldUseOEMFirstRunBubble[] = L"show-OEM-first-run-bubble"; | 724 const wchar_t kShouldUseOEMFirstRunBubble[] = L"show-OEM-first-run-bubble"; |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
869 // The unique id for this instance of the cloud print proxy. | 874 // The unique id for this instance of the cloud print proxy. |
870 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 875 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
871 // The GAIA auth token for Cloud Print | 876 // The GAIA auth token for Cloud Print |
872 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; | 877 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; |
873 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 878 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
874 // This should eventually go away because the above token should work for both. | 879 // This should eventually go away because the above token should work for both. |
875 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; | 880 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; |
876 // The email address of the account used to authenticate with the Cloud Print | 881 // The email address of the account used to authenticate with the Cloud Print |
877 // server. | 882 // server. |
878 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; | 883 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; |
| 884 |
879 } // namespace prefs | 885 } // namespace prefs |
OLD | NEW |