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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 | 465 |
466 // Position and size of the AutoFill dialog. | 466 // Position and size of the AutoFill dialog. |
467 const wchar_t kAutoFillDialogPlacement[] = L"autofill.dialog_placement"; | 467 const wchar_t kAutoFillDialogPlacement[] = L"autofill.dialog_placement"; |
468 | 468 |
469 // Double that indicates positive (for matched forms) upload rate. | 469 // Double that indicates positive (for matched forms) upload rate. |
470 const wchar_t kAutoFillPositiveUploadRate[] = L"autofill.positive_upload_rate"; | 470 const wchar_t kAutoFillPositiveUploadRate[] = L"autofill.positive_upload_rate"; |
471 | 471 |
472 // Double that indicates negative (for not matched forms) upload rate. | 472 // Double that indicates negative (for not matched forms) upload rate. |
473 const wchar_t kAutoFillNegativeUploadRate[] = L"autofill.negative_upload_rate"; | 473 const wchar_t kAutoFillNegativeUploadRate[] = L"autofill.negative_upload_rate"; |
474 | 474 |
475 // Dictionary that maps providers to lists of filter rules. | |
476 const wchar_t kPrivacyFilterRules[] = L"profile.privacy_filter_rules"; | |
477 | |
478 // Boolean that is true when the tabstrip is to be laid out vertically down the | 475 // Boolean that is true when the tabstrip is to be laid out vertically down the |
479 // side of the browser window. | 476 // side of the browser window. |
480 const wchar_t kUseVerticalTabs[] = L"tabs.use_vertical_tabs"; | 477 const wchar_t kUseVerticalTabs[] = L"tabs.use_vertical_tabs"; |
481 | 478 |
482 // Boolean that is true when the translate feature is enabled. | 479 // Boolean that is true when the translate feature is enabled. |
483 const wchar_t kEnableTranslate[] = L"translate.enabled"; | 480 const wchar_t kEnableTranslate[] = L"translate.enabled"; |
484 | 481 |
485 const wchar_t kPinnedTabs[] = L"pinned_tabs"; | 482 const wchar_t kPinnedTabs[] = L"pinned_tabs"; |
486 | 483 |
487 // Integer containing the default Geolocation content setting. | 484 // Integer containing the default Geolocation content setting. |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
905 // String specifying the proxy server. For a specification of the expected | 902 // String specifying the proxy server. For a specification of the expected |
906 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 903 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
907 const wchar_t kProxyServer[] = L"proxy.server"; | 904 const wchar_t kProxyServer[] = L"proxy.server"; |
908 // URL to the proxy .pac file. | 905 // URL to the proxy .pac file. |
909 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 906 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
910 // String containing proxy bypass rules. For a specification of the | 907 // String containing proxy bypass rules. For a specification of the |
911 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 908 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
912 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 909 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
913 | 910 |
914 } // namespace prefs | 911 } // namespace prefs |
OLD | NEW |