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

Side by Side Diff: ui/native_theme/native_theme.h

Issue 2409563002: views: use darker stroke for non-prominent buttons (Closed)
Patch Set: Created 4 years, 2 months 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef UI_NATIVE_THEME_NATIVE_THEME_H_ 5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_H_
6 #define UI_NATIVE_THEME_NATIVE_THEME_H_ 6 #define UI_NATIVE_THEME_NATIVE_THEME_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/observer_list.h" 9 #include "base/observer_list.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 kColorId_ButtonDisabledColor, 257 kColorId_ButtonDisabledColor,
258 kColorId_ButtonHoverColor, 258 kColorId_ButtonHoverColor,
259 kColorId_ButtonPressedShade, 259 kColorId_ButtonPressedShade,
260 kColorId_BlueButtonEnabledColor, 260 kColorId_BlueButtonEnabledColor,
261 kColorId_BlueButtonDisabledColor, 261 kColorId_BlueButtonDisabledColor,
262 kColorId_BlueButtonPressedColor, 262 kColorId_BlueButtonPressedColor,
263 kColorId_BlueButtonHoverColor, 263 kColorId_BlueButtonHoverColor,
264 kColorId_BlueButtonShadowColor, 264 kColorId_BlueButtonShadowColor,
265 kColorId_ProminentButtonColor, 265 kColorId_ProminentButtonColor,
266 kColorId_TextOnProminentButtonColor, 266 kColorId_TextOnProminentButtonColor,
267 kColorId_ProminentButtonBorderColor,
268 kColorId_NonProminentButtonBorderColor,
267 // MenuItem 269 // MenuItem
268 kColorId_EnabledMenuItemForegroundColor, 270 kColorId_EnabledMenuItemForegroundColor,
269 kColorId_DisabledMenuItemForegroundColor, 271 kColorId_DisabledMenuItemForegroundColor,
270 kColorId_SelectedMenuItemForegroundColor, 272 kColorId_SelectedMenuItemForegroundColor,
271 kColorId_FocusedMenuItemBackgroundColor, 273 kColorId_FocusedMenuItemBackgroundColor,
272 kColorId_MenuSeparatorColor, 274 kColorId_MenuSeparatorColor,
273 kColorId_MenuBackgroundColor, 275 kColorId_MenuBackgroundColor,
274 kColorId_MenuBorderColor, 276 kColorId_MenuBorderColor,
275 // MenuButton - buttons in wrench menu 277 // MenuButton - buttons in wrench menu
276 kColorId_EnabledMenuButtonBorderColor, 278 kColorId_EnabledMenuButtonBorderColor,
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 private: 376 private:
375 // Observers to notify when the native theme changes. 377 // Observers to notify when the native theme changes.
376 base::ObserverList<NativeThemeObserver> native_theme_observers_; 378 base::ObserverList<NativeThemeObserver> native_theme_observers_;
377 379
378 DISALLOW_COPY_AND_ASSIGN(NativeTheme); 380 DISALLOW_COPY_AND_ASSIGN(NativeTheme);
379 }; 381 };
380 382
381 } // namespace ui 383 } // namespace ui
382 384
383 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ 385 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698