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

Side by Side Diff: chrome/browser/themes/browser_theme_provider.h

Issue 3538014: Implement layout of NTP apps promo. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 2 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) 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 #ifndef CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_ 5 #ifndef CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_
6 #define CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_ 6 #define CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 COLOR_NTP_SECTION_LINK_UNDERLINE, 77 COLOR_NTP_SECTION_LINK_UNDERLINE,
78 COLOR_CONTROL_BACKGROUND, 78 COLOR_CONTROL_BACKGROUND,
79 COLOR_BUTTON_BACKGROUND, 79 COLOR_BUTTON_BACKGROUND,
80 80
81 // These colors don't have constant default values. They are derived from 81 // These colors don't have constant default values. They are derived from
82 // the runtime value of other colors. 82 // the runtime value of other colors.
83 COLOR_NTP_SECTION_HEADER_TEXT, 83 COLOR_NTP_SECTION_HEADER_TEXT,
84 COLOR_NTP_SECTION_HEADER_TEXT_HOVER, 84 COLOR_NTP_SECTION_HEADER_TEXT_HOVER,
85 COLOR_NTP_SECTION_HEADER_RULE, 85 COLOR_NTP_SECTION_HEADER_RULE,
86 COLOR_NTP_SECTION_HEADER_RULE_LIGHT, 86 COLOR_NTP_SECTION_HEADER_RULE_LIGHT,
87 COLOR_NTP_TEXT_LIGHT,
87 88
88 TINT_BUTTONS, 89 TINT_BUTTONS,
89 TINT_FRAME, 90 TINT_FRAME,
90 TINT_FRAME_INACTIVE, 91 TINT_FRAME_INACTIVE,
91 TINT_FRAME_INCOGNITO, 92 TINT_FRAME_INCOGNITO,
92 TINT_FRAME_INCOGNITO_INACTIVE, 93 TINT_FRAME_INCOGNITO_INACTIVE,
93 TINT_BACKGROUND_TAB, 94 TINT_BACKGROUND_TAB,
94 NTP_BACKGROUND_ALIGNMENT, 95 NTP_BACKGROUND_ALIGNMENT,
95 NTP_BACKGROUND_TILING, 96 NTP_BACKGROUND_TILING,
96 NTP_LOGO_ALTERNATE 97 NTP_LOGO_ALTERNATE
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 275
275 scoped_refptr<BrowserThemePack> theme_pack_; 276 scoped_refptr<BrowserThemePack> theme_pack_;
276 277
277 // The number of infobars currently displayed. 278 // The number of infobars currently displayed.
278 int number_of_infobars_; 279 int number_of_infobars_;
279 280
280 DISALLOW_COPY_AND_ASSIGN(BrowserThemeProvider); 281 DISALLOW_COPY_AND_ASSIGN(BrowserThemeProvider);
281 }; 282 };
282 283
283 #endif // CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_ 284 #endif // CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698