| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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() : NativeThemeAura(false) {} | 157 NativeThemeDarkAura::NativeThemeDarkAura() {} |
| 158 | 158 |
| 159 NativeThemeDarkAura::~NativeThemeDarkAura() {} | 159 NativeThemeDarkAura::~NativeThemeDarkAura() {} |
| 160 | 160 |
| 161 } // namespace ui | 161 } // namespace ui |
| OLD | NEW |