OLD | NEW |
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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 case kColorId_ThrobberWaitingColor: | 144 case kColorId_ThrobberWaitingColor: |
145 case kColorId_ThrobberLightColor: | 145 case kColorId_ThrobberLightColor: |
146 case kColorId_NumColors: | 146 case kColorId_NumColors: |
147 return gfx::kPlaceholderColor; | 147 return gfx::kPlaceholderColor; |
148 } | 148 } |
149 | 149 |
150 NOTREACHED(); | 150 NOTREACHED(); |
151 return gfx::kPlaceholderColor; | 151 return gfx::kPlaceholderColor; |
152 } | 152 } |
153 | 153 |
154 NativeThemeDarkAura::NativeThemeDarkAura() {} | 154 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {} |
155 | 155 |
156 NativeThemeDarkAura::~NativeThemeDarkAura() {} | 156 NativeThemeDarkAura::~NativeThemeDarkAura() {} |
157 | 157 |
158 } // namespace ui | 158 } // namespace ui |
OLD | NEW |