| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 case kColorId_TableGroupingIndicatorColor: | 140 case kColorId_TableGroupingIndicatorColor: |
| 141 case kColorId_TableHeaderText: | 141 case kColorId_TableHeaderText: |
| 142 case kColorId_TableHeaderBackground: | 142 case kColorId_TableHeaderBackground: |
| 143 case kColorId_TableHeaderSeparator: | 143 case kColorId_TableHeaderSeparator: |
| 144 case kColorId_ResultsTablePositiveText: | 144 case kColorId_ResultsTablePositiveText: |
| 145 case kColorId_ResultsTablePositiveHoveredText: | 145 case kColorId_ResultsTablePositiveHoveredText: |
| 146 case kColorId_ResultsTablePositiveSelectedText: | 146 case kColorId_ResultsTablePositiveSelectedText: |
| 147 case kColorId_ResultsTableNegativeText: | 147 case kColorId_ResultsTableNegativeText: |
| 148 case kColorId_ResultsTableNegativeHoveredText: | 148 case kColorId_ResultsTableNegativeHoveredText: |
| 149 case kColorId_ResultsTableNegativeSelectedText: | 149 case kColorId_ResultsTableNegativeSelectedText: |
| 150 case kColorId_SeparatorColor: |
| 150 case kColorId_ThrobberSpinningColor: | 151 case kColorId_ThrobberSpinningColor: |
| 151 case kColorId_ThrobberWaitingColor: | 152 case kColorId_ThrobberWaitingColor: |
| 152 case kColorId_ThrobberLightColor: | 153 case kColorId_ThrobberLightColor: |
| 153 case kColorId_NumColors: | 154 case kColorId_NumColors: |
| 154 return gfx::kPlaceholderColor; | 155 return gfx::kPlaceholderColor; |
| 155 } | 156 } |
| 156 | 157 |
| 157 NOTREACHED(); | 158 NOTREACHED(); |
| 158 return gfx::kPlaceholderColor; | 159 return gfx::kPlaceholderColor; |
| 159 } | 160 } |
| 160 | 161 |
| 161 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {} | 162 NativeThemeDarkAura::NativeThemeDarkAura() : NativeThemeAura(false) {} |
| 162 | 163 |
| 163 NativeThemeDarkAura::~NativeThemeDarkAura() {} | 164 NativeThemeDarkAura::~NativeThemeDarkAura() {} |
| 164 | 165 |
| 165 } // namespace ui | 166 } // namespace ui |
| OLD | NEW |