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

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

Issue 2485013002: Reland of Clean up some NativeTheme code. (Closed)
Patch Set: Created 4 years, 1 month 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 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 case kColorId_ThrobberWaitingColor: 147 case kColorId_ThrobberWaitingColor:
148 case kColorId_ThrobberLightColor: 148 case kColorId_ThrobberLightColor:
149 case kColorId_NumColors: 149 case kColorId_NumColors:
150 return gfx::kPlaceholderColor; 150 return gfx::kPlaceholderColor;
151 } 151 }
152 152
153 NOTREACHED(); 153 NOTREACHED();
154 return gfx::kPlaceholderColor; 154 return gfx::kPlaceholderColor;
155 } 155 }
156 156
157 NativeThemeDarkAura::NativeThemeDarkAura() {} 157 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {}
158 158
159 NativeThemeDarkAura::~NativeThemeDarkAura() {} 159 NativeThemeDarkAura::~NativeThemeDarkAura() {}
160 160
161 } // namespace ui 161 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698