| 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 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 // Updated if found to the above key. | 698 // Updated if found to the above key. |
| 699 const wchar_t kGeoIDAtInstall[] = L"geoid_at_install"; | 699 const wchar_t kGeoIDAtInstall[] = L"geoid_at_install"; |
| 700 | 700 |
| 701 // An enum value of how the browser was shut down (see browser_shutdown.h). | 701 // An enum value of how the browser was shut down (see browser_shutdown.h). |
| 702 const wchar_t kShutdownType[] = L"shutdown.type"; | 702 const wchar_t kShutdownType[] = L"shutdown.type"; |
| 703 // Number of processes that were open when the user shut down. | 703 // Number of processes that were open when the user shut down. |
| 704 const wchar_t kShutdownNumProcesses[] = L"shutdown.num_processes"; | 704 const wchar_t kShutdownNumProcesses[] = L"shutdown.num_processes"; |
| 705 // Number of processes that were shut down using the slow path. | 705 // Number of processes that were shut down using the slow path. |
| 706 const wchar_t kShutdownNumProcessesSlow[] = L"shutdown.num_processes_slow"; | 706 const wchar_t kShutdownNumProcessesSlow[] = L"shutdown.num_processes_slow"; |
| 707 | 707 |
| 708 // Whether to restart the current Chrome session automatically as the last thing |
| 709 // before shutting everything down. |
| 710 const wchar_t kRestartLastSessionOnShutdown[] = |
| 711 L"restart.last.session.on.shutdown"; |
| 712 |
| 708 // Number of bookmarks/folders on the bookmark bar/other bookmark folder. | 713 // Number of bookmarks/folders on the bookmark bar/other bookmark folder. |
| 709 const wchar_t kNumBookmarksOnBookmarkBar[] = | 714 const wchar_t kNumBookmarksOnBookmarkBar[] = |
| 710 L"user_experience_metrics.num_bookmarks_on_bookmark_bar"; | 715 L"user_experience_metrics.num_bookmarks_on_bookmark_bar"; |
| 711 const wchar_t kNumFoldersOnBookmarkBar[] = | 716 const wchar_t kNumFoldersOnBookmarkBar[] = |
| 712 L"user_experience_metrics.num_folders_on_bookmark_bar"; | 717 L"user_experience_metrics.num_folders_on_bookmark_bar"; |
| 713 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = | 718 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = |
| 714 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; | 719 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; |
| 715 const wchar_t kNumFoldersInOtherBookmarkFolder[] = | 720 const wchar_t kNumFoldersInOtherBookmarkFolder[] = |
| 716 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; | 721 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; |
| 717 | 722 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 820 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
| 816 // The GAIA auth token for Cloud Print | 821 // The GAIA auth token for Cloud Print |
| 817 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; | 822 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; |
| 818 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 823 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| 819 // This should eventually go away because the above token should work for both. | 824 // This should eventually go away because the above token should work for both. |
| 820 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; | 825 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; |
| 821 // The email address of the account used to authenticate with the Cloud Print | 826 // The email address of the account used to authenticate with the Cloud Print |
| 822 // server. | 827 // server. |
| 823 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; | 828 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; |
| 824 } // namespace prefs | 829 } // namespace prefs |
| OLD | NEW |