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

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

Issue 17494005: linux_aura: Three fixes for switching themes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 7 years, 6 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
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 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
948 // Boolean controlling whether history saving is disabled. 948 // Boolean controlling whether history saving is disabled.
949 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; 949 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled";
950 950
951 // Boolean controlling whether deleting browsing and download history is 951 // Boolean controlling whether deleting browsing and download history is
952 // permitted. 952 // permitted.
953 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; 953 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled";
954 954
955 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. 955 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches.
956 const char kForceSafeSearch[] = "settings.force_safesearch"; 956 const char kForceSafeSearch[] = "settings.force_safesearch";
957 957
958 #if defined(TOOLKIT_GTK) 958 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
959 // GTK specific preference on whether we should match the system GTK theme. 959 // Linux specific preference on whether we should match the system theme.
960 const char kUsesSystemTheme[] = "extensions.theme.use_system"; 960 const char kUsesSystemTheme[] = "extensions.theme.use_system";
961 #endif 961 #endif
962 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; 962 const char kCurrentThemePackFilename[] = "extensions.theme.pack";
963 const char kCurrentThemeID[] = "extensions.theme.id"; 963 const char kCurrentThemeID[] = "extensions.theme.id";
964 const char kCurrentThemeImages[] = "extensions.theme.images"; 964 const char kCurrentThemeImages[] = "extensions.theme.images";
965 const char kCurrentThemeColors[] = "extensions.theme.colors"; 965 const char kCurrentThemeColors[] = "extensions.theme.colors";
966 const char kCurrentThemeTints[] = "extensions.theme.tints"; 966 const char kCurrentThemeTints[] = "extensions.theme.tints";
967 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; 967 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties";
968 968
969 // Boolean pref which persists whether the extensions_ui is in developer mode 969 // Boolean pref which persists whether the extensions_ui is in developer mode
(...skipping 1524 matching lines...) Expand 10 before | Expand all | Expand 10 after
2494 2494
2495 // How often the bubble has been shown. 2495 // How often the bubble has been shown.
2496 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2496 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2497 2497
2498 // A string pref for storing the salt used to compute the pepper device ID. 2498 // A string pref for storing the salt used to compute the pepper device ID.
2499 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2499 const char kDRMSalt[] = "settings.privacy.drm_salt";
2500 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2500 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2501 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2501 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2502 2502
2503 } // namespace prefs 2503 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698