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

Unified Diff: ash/common/ash_switches.cc

Issue 2802903003: Implementation of a full screen app list and re-alphabetized switches (Closed)
Patch Set: fixed some formatting/whitespace errors. Created 3 years, 8 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
Index: ash/common/ash_switches.cc
diff --git a/ash/common/ash_switches.cc b/ash/common/ash_switches.cc
index c4932043f7a6eaf325b025f3805269f8233b2921..49dc577dab0e7edffbb501de50793802e66505d7 100644
--- a/ash/common/ash_switches.cc
+++ b/ash/common/ash_switches.cc
@@ -51,6 +51,9 @@ const char kAshDisableTouchExplorationMode[] =
const char kAshEnableMagnifierKeyScroller[] =
"ash-enable-magnifier-key-scroller";
+// Enables mirrored screen.
+const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen";
vadimt 2017/04/10 19:40:10 Good Samaritan! :)
newcomer 2017/04/13 21:13:59 Thanks!
+
// Enables the palette on every display, instead of only the internal one.
const char kAshEnablePaletteOnAllDisplays[] =
"ash-enable-palette-on-all-displays";
@@ -58,9 +61,6 @@ const char kAshEnablePaletteOnAllDisplays[] =
// Enables the observation of accelerometer events to enter touch-view mode.
const char kAshEnableTouchView[] = "enable-touchview";
-// Enables mirrored screen.
-const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen";
-
// Enables a smoother animation for screen rotation.
const char kAshEnableSmoothScreenRotation[] =
"ash-enable-smooth-screen-rotation";
@@ -89,17 +89,18 @@ const char kAshHideNotificationsForFactory[] =
// Enables the shelf color to be derived from the wallpaper.
const char kAshShelfColor[] = "ash-shelf-color";
-const char kAshShelfColorEnabled[] = "enabled";
const char kAshShelfColorDisabled[] = "disabled";
+const char kAshShelfColorEnabled[] = "enabled";
// The color scheme to be used when the |kAshShelfColor| feature is enabled.
const char kAshShelfColorScheme[] = "ash-shelf-color-scheme";
+const char kAshShelfColorSchemeDarkMuted[] = "dark_muted";
+const char kAshShelfColorSchemeDarkVibrant[] = "dark_vibrant";
const char kAshShelfColorSchemeLightMuted[] = "light_muted";
const char kAshShelfColorSchemeLightVibrant[] = "light_vibrant";
const char kAshShelfColorSchemeNormalMuted[] = "normal_muted";
const char kAshShelfColorSchemeNormalVibrant[] = "normal_vibrant";
-const char kAshShelfColorSchemeDarkMuted[] = "dark_muted";
-const char kAshShelfColorSchemeDarkVibrant[] = "dark_vibrant";
+
// Enables the heads-up display for tracking touch points.
const char kAshTouchHud[] = "ash-touch-hud";

Powered by Google App Engine
This is Rietveld 408576698