| 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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 | 637 |
| 638 // A collection of position, size, and other data relating to the page info | 638 // A collection of position, size, and other data relating to the page info |
| 639 // window to restore on startup. | 639 // window to restore on startup. |
| 640 const wchar_t kPageInfoWindowPlacement[] = L"page_info.window_placement"; | 640 const wchar_t kPageInfoWindowPlacement[] = L"page_info.window_placement"; |
| 641 | 641 |
| 642 // A collection of position, size, and other data relating to the keyword | 642 // A collection of position, size, and other data relating to the keyword |
| 643 // editor window to restore on startup. | 643 // editor window to restore on startup. |
| 644 const wchar_t kKeywordEditorWindowPlacement[] = | 644 const wchar_t kKeywordEditorWindowPlacement[] = |
| 645 L"keyword_editor.window_placement"; | 645 L"keyword_editor.window_placement"; |
| 646 | 646 |
| 647 // A collection of position, size, and other data relating to the preferences |
| 648 // window to restore on startup. |
| 649 const wchar_t kPreferencesWindowPlacement[] = L"preferences.window_placement"; |
| 650 |
| 647 // An integer specifying the total number of bytes to be used by the | 651 // An integer specifying the total number of bytes to be used by the |
| 648 // renderer's in-memory cache of objects. | 652 // renderer's in-memory cache of objects. |
| 649 const wchar_t kMemoryCacheSize[] = L"renderer.memory_cache.size"; | 653 const wchar_t kMemoryCacheSize[] = L"renderer.memory_cache.size"; |
| 650 | 654 |
| 651 // String which specifies where to download files to by default. | 655 // String which specifies where to download files to by default. |
| 652 const wchar_t kDownloadDefaultDirectory[] = L"download.default_directory"; | 656 const wchar_t kDownloadDefaultDirectory[] = L"download.default_directory"; |
| 653 | 657 |
| 654 // Boolean that records if the download directory was changed by an | 658 // Boolean that records if the download directory was changed by an |
| 655 // upgrade a unsafe location to a safe location. | 659 // upgrade a unsafe location to a safe location. |
| 656 const wchar_t kDownloadDirUpgraded[] = L"download.directory_upgrade"; | 660 const wchar_t kDownloadDirUpgraded[] = L"download.directory_upgrade"; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 857 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
| 854 // The GAIA auth token for Cloud Print | 858 // The GAIA auth token for Cloud Print |
| 855 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; | 859 const wchar_t kCloudPrintAuthToken[] = L"cloud_print.auth_token"; |
| 856 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 860 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| 857 // This should eventually go away because the above token should work for both. | 861 // This should eventually go away because the above token should work for both. |
| 858 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; | 862 const wchar_t kCloudPrintXMPPAuthToken[] = L"cloud_print.xmpp_auth_token"; |
| 859 // The email address of the account used to authenticate with the Cloud Print | 863 // The email address of the account used to authenticate with the Cloud Print |
| 860 // server. | 864 // server. |
| 861 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; | 865 extern const wchar_t kCloudPrintEmail[] = L"cloud_print.email"; |
| 862 } // namespace prefs | 866 } // namespace prefs |
| OLD | NEW |