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

Unified Diff: chrome/browser/android/vr_shell/color_scheme.cc

Issue 2932573002: [VrShell] Fix incorrect loading indicator colors. (Closed)
Patch Set: Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/vr_shell/color_scheme.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/vr_shell/color_scheme.cc
diff --git a/chrome/browser/android/vr_shell/color_scheme.cc b/chrome/browser/android/vr_shell/color_scheme.cc
index 56ec5db31554dd5d4af66daa55ea1ad25958f3a8..775793da89149d798bb53e9232de28f4827425d2 100644
--- a/chrome/browser/android/vr_shell/color_scheme.cc
+++ b/chrome/browser/android/vr_shell/color_scheme.cc
@@ -32,20 +32,20 @@ void InitializeColorSchemes() {
normal_scheme.element_background_hover;
normal_scheme.close_button_background_down =
normal_scheme.element_background_down;
- normal_scheme.loading_indicator_background = normal_scheme.element_foreground;
- normal_scheme.loading_indicator_foreground = normal_scheme.floor;
- normal_scheme.exit_warning_background = 0xCC1A1A1A;
+ normal_scheme.loading_indicator_foreground = normal_scheme.element_foreground;
+ normal_scheme.loading_indicator_background = normal_scheme.floor;
normal_scheme.exit_warning_foreground = SK_ColorWHITE;
- normal_scheme.transient_warning_background =
- normal_scheme.exit_warning_background;
+ normal_scheme.exit_warning_background = 0xCC1A1A1A;
normal_scheme.transient_warning_foreground =
normal_scheme.exit_warning_foreground;
- normal_scheme.permanent_warning_background = SK_ColorWHITE;
+ normal_scheme.transient_warning_background =
+ normal_scheme.exit_warning_background;
normal_scheme.permanent_warning_foreground = 0xFF444444;
- normal_scheme.system_indicator_background =
- normal_scheme.permanent_warning_background;
+ normal_scheme.permanent_warning_background = SK_ColorWHITE;
normal_scheme.system_indicator_foreground =
normal_scheme.permanent_warning_foreground;
+ normal_scheme.system_indicator_background =
+ normal_scheme.permanent_warning_background;
normal_scheme.separator = 0xFF9E9E9E;
normal_scheme.secure = gfx::kGoogleGreen700;
normal_scheme.insecure = gfx::kGoogleRed700;
@@ -77,8 +77,8 @@ void InitializeColorSchemes() {
incognito_scheme.element_background = 0xCC454545;
incognito_scheme.element_background_hover = 0xCC505050;
incognito_scheme.element_background_down = 0xCC888888;
- incognito_scheme.loading_indicator_foreground = 0xFF454545;
- incognito_scheme.loading_indicator_background = 0xFF8A8A8A;
+ incognito_scheme.loading_indicator_foreground = 0xFF8A8A8A;
+ incognito_scheme.loading_indicator_background = 0xFF454545;
incognito_scheme.separator = 0xFF474747;
incognito_scheme.secure = 0xFFEDEDED;
incognito_scheme.insecure = incognito_scheme.secure;
« no previous file with comments | « chrome/browser/android/vr_shell/color_scheme.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698