Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Side by Side Diff: chrome/common/pref_names.cc

Issue 10387161: Pepper Flash settings integration: add UI for "deauthorize content licenses". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/tools/chromeactions.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 // separated with comma punctuation mark. 691 // separated with comma punctuation mark.
692 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; 692 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings";
693 693
694 // Clear Browsing Data dialog preferences. 694 // Clear Browsing Data dialog preferences.
695 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; 695 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history";
696 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; 696 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history";
697 const char kDeleteCache[] = "browser.clear_data.cache"; 697 const char kDeleteCache[] = "browser.clear_data.cache";
698 const char kDeleteCookies[] = "browser.clear_data.cookies"; 698 const char kDeleteCookies[] = "browser.clear_data.cookies";
699 const char kDeletePasswords[] = "browser.clear_data.passwords"; 699 const char kDeletePasswords[] = "browser.clear_data.passwords";
700 const char kDeleteFormData[] = "browser.clear_data.form_data"; 700 const char kDeleteFormData[] = "browser.clear_data.form_data";
701 const char kDeauthorizeContentLicenses[] =
702 "browser.clear_data.content_licenses";
701 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; 703 const char kDeleteTimePeriod[] = "browser.clear_data.time_period";
702 704
703 // Boolean pref to define the default values for using spellchecker. 705 // Boolean pref to define the default values for using spellchecker.
704 const char kEnableSpellCheck[] = "browser.enable_spellchecking"; 706 const char kEnableSpellCheck[] = "browser.enable_spellchecking";
705 707
706 // List of names of the enabled labs experiments (see chrome/browser/labs.cc). 708 // List of names of the enabled labs experiments (see chrome/browser/labs.cc).
707 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments"; 709 const char kEnabledLabsExperiments[] = "browser.enabled_labs_experiments";
708 710
709 // Boolean pref to define the default values for using auto spell correct. 711 // Boolean pref to define the default values for using auto spell correct.
710 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect"; 712 const char kEnableAutoSpellCorrect[] = "browser.enable_autospellcorrect";
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 const char kDeviceLocation[] = "device_status.location"; 1681 const char kDeviceLocation[] = "device_status.location";
1680 1682
1681 // A string that is used to store first-time sync startup after once sync is 1683 // A string that is used to store first-time sync startup after once sync is
1682 // disabled. This will be refreshed every sign-in. 1684 // disabled. This will be refreshed every sign-in.
1683 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token"; 1685 const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token";
1684 #endif 1686 #endif
1685 1687
1686 // Whether there is a Flash version installed that supports clearing LSO data. 1688 // Whether there is a Flash version installed that supports clearing LSO data.
1687 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 1689 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
1688 1690
1691 // Whether we should show Pepper Flash-specific settings.
1692 const char kPepperFlashSettingsEnabled[] =
1693 "browser.pepper_flash_settings_enabled";
1694
1689 // String which specifies where to store the disk cache. 1695 // String which specifies where to store the disk cache.
1690 const char kDiskCacheDir[] = "browser.disk_cache_dir"; 1696 const char kDiskCacheDir[] = "browser.disk_cache_dir";
1691 // Pref name for the policy specifying the maximal cache size. 1697 // Pref name for the policy specifying the maximal cache size.
1692 const char kDiskCacheSize[] = "browser.disk_cache_size"; 1698 const char kDiskCacheSize[] = "browser.disk_cache_size";
1693 // Pref name for the policy specifying the maximal media cache size. 1699 // Pref name for the policy specifying the maximal media cache size.
1694 const char kMediaCacheSize[] = "browser.media_cache_size"; 1700 const char kMediaCacheSize[] = "browser.media_cache_size";
1695 1701
1696 // Specifies the release channel that the device should be locked to. 1702 // Specifies the release channel that the device should be locked to.
1697 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an 1703 // Possible values: "stable-channel", "beta-channel", "dev-channel", or an
1698 // empty string, in which case the value will be ignored. 1704 // empty string, in which case the value will be ignored.
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1868 const char kInManagedMode[] = "managed_mode"; 1874 const char kInManagedMode[] = "managed_mode";
1869 1875
1870 // Counts how many more times the 'profile on a network share' warning should be 1876 // Counts how many more times the 'profile on a network share' warning should be
1871 // shown to the user before the next silence period. 1877 // shown to the user before the next silence period.
1872 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; 1878 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left";
1873 // Tracks the time of the last shown warning. Used to reset 1879 // Tracks the time of the last shown warning. Used to reset
1874 // |network_profile.warnings_left| after a silence period. 1880 // |network_profile.warnings_left| after a silence period.
1875 const char kNetworkProfileLastWarningTime[] = 1881 const char kNetworkProfileLastWarningTime[] =
1876 "network_profile.last_warning_time"; 1882 "network_profile.last_warning_time";
1877 } // namespace prefs 1883 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/tools/chromeactions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698