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

Side by Side Diff: extensions/browser/pref_names.cc

Issue 451193003: Remove deprecated kBrowserActionContainerWidth pref (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unneeded includes Created 6 years, 4 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
« no previous file with comments | « extensions/browser/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "extensions/browser/pref_names.h" 5 #include "extensions/browser/pref_names.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace extensions { 9 namespace extensions {
10 namespace pref_names { 10 namespace pref_names {
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 NOTREACHED(); 26 NOTREACHED();
27 return false; 27 return false;
28 } 28 }
29 29
30 const char kAlertsInitialized[] = "extensions.alerts.initialized"; 30 const char kAlertsInitialized[] = "extensions.alerts.initialized";
31 const char kAllowedInstallSites[] = "extensions.allowed_install_sites"; 31 const char kAllowedInstallSites[] = "extensions.allowed_install_sites";
32 const char kAllowedTypes[] = "extensions.allowed_types"; 32 const char kAllowedTypes[] = "extensions.allowed_types";
33 const char kBookmarkAppCreationLaunchType[] = 33 const char kBookmarkAppCreationLaunchType[] =
34 "extensions.bookmark_app_creation_launch_type"; 34 "extensions.bookmark_app_creation_launch_type";
35 const char kBrowserActionContainerWidth[] =
36 "extensions.browseractions.container.width";
37 const char kExtensions[] = "extensions.settings"; 35 const char kExtensions[] = "extensions.settings";
38 const char kInstallAllowList[] = "extensions.install.allowlist"; 36 const char kInstallAllowList[] = "extensions.install.allowlist";
39 const char kInstallDenyList[] = "extensions.install.denylist"; 37 const char kInstallDenyList[] = "extensions.install.denylist";
40 const char kInstallForceList[] = "extensions.install.forcelist"; 38 const char kInstallForceList[] = "extensions.install.forcelist";
41 const char kLastChromeVersion[] = "extensions.last_chrome_version"; 39 const char kLastChromeVersion[] = "extensions.last_chrome_version";
42 const char kLastUpdateCheck[] = "extensions.autoupdate.last_check"; 40 const char kLastUpdateCheck[] = "extensions.autoupdate.last_check";
43 const char kNativeMessagingBlacklist[] = "native_messaging.blacklist"; 41 const char kNativeMessagingBlacklist[] = "native_messaging.blacklist";
44 const char kNativeMessagingWhitelist[] = "native_messaging.whitelist"; 42 const char kNativeMessagingWhitelist[] = "native_messaging.whitelist";
45 const char kNativeMessagingUserLevelHosts[] = 43 const char kNativeMessagingUserLevelHosts[] =
46 "native_messaging.user_level_hosts"; 44 "native_messaging.user_level_hosts";
47 const char kNextUpdateCheck[] = "extensions.autoupdate.next_check"; 45 const char kNextUpdateCheck[] = "extensions.autoupdate.next_check";
48 const char kStorageGarbageCollect[] = "extensions.storage.garbagecollect"; 46 const char kStorageGarbageCollect[] = "extensions.storage.garbagecollect";
49 const char kToolbar[] = "extensions.toolbar"; 47 const char kToolbar[] = "extensions.toolbar";
50 const char kToolbarSize[] = "extensions.toolbarsize"; 48 const char kToolbarSize[] = "extensions.toolbarsize";
51 49
52 const char kPrefPreferences[] = "preferences"; 50 const char kPrefPreferences[] = "preferences";
53 const char kPrefIncognitoPreferences[] = "incognito_preferences"; 51 const char kPrefIncognitoPreferences[] = "incognito_preferences";
54 const char kPrefRegularOnlyPreferences[] = "regular_only_preferences"; 52 const char kPrefRegularOnlyPreferences[] = "regular_only_preferences";
55 const char kPrefContentSettings[] = "content_settings"; 53 const char kPrefContentSettings[] = "content_settings";
56 const char kPrefIncognitoContentSettings[] = "incognito_content_settings"; 54 const char kPrefIncognitoContentSettings[] = "incognito_content_settings";
57 55
58 } // namespace pref_names 56 } // namespace pref_names
59 } // namespace extensions 57 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698