| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |