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

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

Issue 150176: GTK: First draft of using native themes, partially based on evan's CL 118358. (Closed)
Patch Set: And the codereview tool is back. Created 11 years, 5 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
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 9
10 #include "build/build_config.h"
11
10 namespace prefs { 12 namespace prefs {
11 13
12 // Profile prefs 14 // Profile prefs
13 extern const wchar_t kHomePageIsNewTabPage[]; 15 extern const wchar_t kHomePageIsNewTabPage[];
14 extern const wchar_t kHomePage[]; 16 extern const wchar_t kHomePage[];
15 extern const wchar_t kProfileName[]; 17 extern const wchar_t kProfileName[];
16 extern const wchar_t kProfileNickname[]; 18 extern const wchar_t kProfileNickname[];
17 extern const wchar_t kProfileID[]; 19 extern const wchar_t kProfileID[];
18 extern const wchar_t kRecentlyViewedModelBiasActiveTabHistory[]; 20 extern const wchar_t kRecentlyViewedModelBiasActiveTabHistory[];
19 extern const wchar_t kRecentlyViewedModelSelectionMode[]; 21 extern const wchar_t kRecentlyViewedModelSelectionMode[];
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 extern const wchar_t kBookmarkManagerSplitLocation[]; 84 extern const wchar_t kBookmarkManagerSplitLocation[];
83 extern const wchar_t kEnableSpellCheck[]; 85 extern const wchar_t kEnableSpellCheck[];
84 extern const wchar_t kEnableAutoSpellCorrect[]; 86 extern const wchar_t kEnableAutoSpellCorrect[];
85 extern const wchar_t kDeleteTimePeriod[]; 87 extern const wchar_t kDeleteTimePeriod[];
86 extern const wchar_t kPrintingPageHeaderLeft[]; 88 extern const wchar_t kPrintingPageHeaderLeft[];
87 extern const wchar_t kPrintingPageHeaderCenter[]; 89 extern const wchar_t kPrintingPageHeaderCenter[];
88 extern const wchar_t kPrintingPageHeaderRight[]; 90 extern const wchar_t kPrintingPageHeaderRight[];
89 extern const wchar_t kPrintingPageFooterLeft[]; 91 extern const wchar_t kPrintingPageFooterLeft[];
90 extern const wchar_t kPrintingPageFooterCenter[]; 92 extern const wchar_t kPrintingPageFooterCenter[];
91 extern const wchar_t kPrintingPageFooterRight[]; 93 extern const wchar_t kPrintingPageFooterRight[];
94 #if defined(OS_LINUX)
tony 2009/07/07 19:47:05 Nit: I would probably not bother with putting plat
95 extern const wchar_t kUsesSystemTheme[];
96 #endif
92 extern const wchar_t kCurrentThemeID[]; 97 extern const wchar_t kCurrentThemeID[];
93 extern const wchar_t kCurrentThemeImages[]; 98 extern const wchar_t kCurrentThemeImages[];
94 extern const wchar_t kCurrentThemeColors[]; 99 extern const wchar_t kCurrentThemeColors[];
95 extern const wchar_t kCurrentThemeTints[]; 100 extern const wchar_t kCurrentThemeTints[];
96 extern const wchar_t kCurrentThemeDisplayProperties[]; 101 extern const wchar_t kCurrentThemeDisplayProperties[];
97 extern const wchar_t kCheckDefaultBrowser[]; 102 extern const wchar_t kCheckDefaultBrowser[];
98 extern const wchar_t kUseCustomChromeFrame[]; 103 extern const wchar_t kUseCustomChromeFrame[];
99 104
100 // Local state 105 // Local state
101 extern const wchar_t kAvailableProfiles[]; 106 extern const wchar_t kAvailableProfiles[];
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 extern const wchar_t kNTPTipsCache[]; 201 extern const wchar_t kNTPTipsCache[];
197 extern const wchar_t kNTPTipsCacheUpdate[]; 202 extern const wchar_t kNTPTipsCacheUpdate[];
198 extern const wchar_t kNTPTipsServer[]; 203 extern const wchar_t kNTPTipsServer[];
199 extern const wchar_t kNTPShownSections[]; 204 extern const wchar_t kNTPShownSections[];
200 205
201 extern const wchar_t kDevToolsOpenDocked[]; 206 extern const wchar_t kDevToolsOpenDocked[];
202 extern const wchar_t kDevToolsSplitLocation[]; 207 extern const wchar_t kDevToolsSplitLocation[];
203 } 208 }
204 209
205 #endif // CHROME_COMMON_PREF_NAMES_H_ 210 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698