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

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

Issue 3250002: Add an accordian effect to NTP. (Closed)
Patch Set: Fix menu positioning when there is a scrollbar. Created 10 years, 3 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 COLOR_BACKGROUND_TAB_TEXT, 67 COLOR_BACKGROUND_TAB_TEXT,
68 COLOR_BOOKMARK_TEXT, 68 COLOR_BOOKMARK_TEXT,
69 COLOR_NTP_BACKGROUND, 69 COLOR_NTP_BACKGROUND,
70 COLOR_NTP_TEXT, 70 COLOR_NTP_TEXT,
71 COLOR_NTP_LINK, 71 COLOR_NTP_LINK,
72 COLOR_NTP_LINK_UNDERLINE, 72 COLOR_NTP_LINK_UNDERLINE,
73 COLOR_NTP_HEADER, 73 COLOR_NTP_HEADER,
74 COLOR_NTP_SECTION, 74 COLOR_NTP_SECTION,
75 COLOR_NTP_SECTION_HEADER_TEXT, 75 COLOR_NTP_SECTION_HEADER_TEXT,
76 COLOR_NTP_SECTION_HEADER_TEXT_HOVER, 76 COLOR_NTP_SECTION_HEADER_TEXT_HOVER,
77 COLOR_NTP_SECTION_HEADER_RULE,
78 COLOR_NTP_SECTION_HEADER_RULE_LIGHT,
77 COLOR_NTP_SECTION_TEXT, 79 COLOR_NTP_SECTION_TEXT,
78 COLOR_NTP_SECTION_LINK, 80 COLOR_NTP_SECTION_LINK,
79 COLOR_NTP_SECTION_LINK_UNDERLINE, 81 COLOR_NTP_SECTION_LINK_UNDERLINE,
80 COLOR_CONTROL_BACKGROUND, 82 COLOR_CONTROL_BACKGROUND,
81 COLOR_BUTTON_BACKGROUND, 83 COLOR_BUTTON_BACKGROUND,
82 TINT_BUTTONS, 84 TINT_BUTTONS,
83 TINT_FRAME, 85 TINT_FRAME,
84 TINT_FRAME_INACTIVE, 86 TINT_FRAME_INACTIVE,
85 TINT_FRAME_INCOGNITO, 87 TINT_FRAME_INCOGNITO,
86 TINT_FRAME_INCOGNITO_INACTIVE, 88 TINT_FRAME_INCOGNITO_INACTIVE,
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 270
269 scoped_refptr<BrowserThemePack> theme_pack_; 271 scoped_refptr<BrowserThemePack> theme_pack_;
270 272
271 // The number of infobars currently displayed. 273 // The number of infobars currently displayed.
272 int number_of_infobars_; 274 int number_of_infobars_;
273 275
274 DISALLOW_COPY_AND_ASSIGN(BrowserThemeProvider); 276 DISALLOW_COPY_AND_ASSIGN(BrowserThemeProvider);
275 }; 277 };
276 278
277 #endif // CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_ 279 #endif // CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698