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

Side by Side Diff: ui/native_theme/native_theme_dark_aura.cc

Issue 2623753002: Native themes: Add separator color (Closed)
Patch Set: Change function order Created 3 years, 11 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 | « ui/native_theme/native_theme.h ('k') | ui/views/controls/separator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ui/native_theme/native_theme_dark_aura.h" 5 #include "ui/native_theme/native_theme_dark_aura.h"
6 6
7 #include "ui/gfx/color_palette.h" 7 #include "ui/gfx/color_palette.h"
8 8
9 namespace ui { 9 namespace ui {
10 10
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 case kColorId_TableSelectedTextUnfocused: 137 case kColorId_TableSelectedTextUnfocused:
138 case kColorId_TableSelectionBackgroundFocused: 138 case kColorId_TableSelectionBackgroundFocused:
139 case kColorId_TableSelectionBackgroundUnfocused: 139 case kColorId_TableSelectionBackgroundUnfocused:
140 case kColorId_TableGroupingIndicatorColor: 140 case kColorId_TableGroupingIndicatorColor:
141 case kColorId_ResultsTablePositiveText: 141 case kColorId_ResultsTablePositiveText:
142 case kColorId_ResultsTablePositiveHoveredText: 142 case kColorId_ResultsTablePositiveHoveredText:
143 case kColorId_ResultsTablePositiveSelectedText: 143 case kColorId_ResultsTablePositiveSelectedText:
144 case kColorId_ResultsTableNegativeText: 144 case kColorId_ResultsTableNegativeText:
145 case kColorId_ResultsTableNegativeHoveredText: 145 case kColorId_ResultsTableNegativeHoveredText:
146 case kColorId_ResultsTableNegativeSelectedText: 146 case kColorId_ResultsTableNegativeSelectedText:
147 case kColorId_SeparatorColor:
147 case kColorId_ThrobberSpinningColor: 148 case kColorId_ThrobberSpinningColor:
148 case kColorId_ThrobberWaitingColor: 149 case kColorId_ThrobberWaitingColor:
149 case kColorId_ThrobberLightColor: 150 case kColorId_ThrobberLightColor:
150 case kColorId_NumColors: 151 case kColorId_NumColors:
151 return gfx::kPlaceholderColor; 152 return gfx::kPlaceholderColor;
152 } 153 }
153 154
154 NOTREACHED(); 155 NOTREACHED();
155 return gfx::kPlaceholderColor; 156 return gfx::kPlaceholderColor;
156 } 157 }
157 158
158 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {} 159 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {}
159 160
160 NativeThemeDarkAura::~NativeThemeDarkAura() {} 161 NativeThemeDarkAura::~NativeThemeDarkAura() {}
161 162
162 } // namespace ui 163 } // namespace ui
OLDNEW
« no previous file with comments | « ui/native_theme/native_theme.h ('k') | ui/views/controls/separator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698