| 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 const wchar_t kNumFoldersOnBookmarkBar[] = | 772 const wchar_t kNumFoldersOnBookmarkBar[] = |
| 773 L"user_experience_metrics.num_folders_on_bookmark_bar"; | 773 L"user_experience_metrics.num_folders_on_bookmark_bar"; |
| 774 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = | 774 const wchar_t kNumBookmarksInOtherBookmarkFolder[] = |
| 775 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; | 775 L"user_experience_metrics.num_bookmarks_in_other_bookmark_folder"; |
| 776 const wchar_t kNumFoldersInOtherBookmarkFolder[] = | 776 const wchar_t kNumFoldersInOtherBookmarkFolder[] = |
| 777 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; | 777 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; |
| 778 | 778 |
| 779 // Number of keywords. | 779 // Number of keywords. |
| 780 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; | 780 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; |
| 781 | 781 |
| 782 // Placeholder preference for disabling voice / video chat if it is ever added. |
| 783 // Currently, this does not change any behavior. |
| 784 const wchar_t kDisableVideoAndChat[] = L"disable_video_chat"; |
| 785 |
| 782 // Whether Extensions are enabled. | 786 // Whether Extensions are enabled. |
| 783 const wchar_t kDisableExtensions[] = L"extensions.disabled"; | 787 const wchar_t kDisableExtensions[] = L"extensions.disabled"; |
| 784 | 788 |
| 785 // Boolean which specifies whether the Extension Shelf is visible on all tabs. | 789 // Boolean which specifies whether the Extension Shelf is visible on all tabs. |
| 786 const wchar_t kShowExtensionShelf[] = L"extensions.shelf.show_on_all_tabs"; | 790 const wchar_t kShowExtensionShelf[] = L"extensions.shelf.show_on_all_tabs"; |
| 787 | 791 |
| 788 // Integer boolean representing the width (in pixels) of the container for | 792 // Integer boolean representing the width (in pixels) of the container for |
| 789 // browser actions. | 793 // browser actions. |
| 790 const wchar_t kBrowserActionContainerWidth[] = | 794 const wchar_t kBrowserActionContainerWidth[] = |
| 791 L"extensions.browseractions.container.width"; | 795 L"extensions.browseractions.container.width"; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 // String specifying the proxy server. For a specification of the expected | 904 // String specifying the proxy server. For a specification of the expected |
| 901 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 905 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 902 const wchar_t kProxyServer[] = L"proxy.server"; | 906 const wchar_t kProxyServer[] = L"proxy.server"; |
| 903 // URL to the proxy .pac file. | 907 // URL to the proxy .pac file. |
| 904 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 908 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
| 905 // String containing proxy bypass rules. For a specification of the | 909 // String containing proxy bypass rules. For a specification of the |
| 906 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 910 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 907 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 911 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
| 908 | 912 |
| 909 } // namespace prefs | 913 } // namespace prefs |
| OLD | NEW |