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

Side by Side Diff: ash/ash_switches.cc

Issue 358553004: Added text filtering to Overview Mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed unittest Created 6 years, 5 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 #include "ash/ash_switches.h" 5 #include "ash/ash_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace ash { 9 namespace ash {
10 namespace switches { 10 namespace switches {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // set. 47 // set.
48 const char kAshDisableTouchExplorationMode[] = 48 const char kAshDisableTouchExplorationMode[] =
49 "ash-disable-touch-exploration-mode"; 49 "ash-disable-touch-exploration-mode";
50 50
51 #if defined(OS_CHROMEOS) 51 #if defined(OS_CHROMEOS)
52 // Enables key bindings to scroll magnified screen. 52 // Enables key bindings to scroll magnified screen.
53 const char kAshEnableMagnifierKeyScroller[] = 53 const char kAshEnableMagnifierKeyScroller[] =
54 "ash-enable-magnifier-key-scroller"; 54 "ash-enable-magnifier-key-scroller";
55 #endif 55 #endif
56 56
57 // Enables text filtering with the keyboard in Overview Mode.
58 const char kAshDisableTextFilteringInOverviewMode[] =
59 "ash-disable-text-filtering-in-overview-mode";
60
57 // Enables software based mirroring. 61 // Enables software based mirroring.
58 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; 62 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring";
59 63
60 // Enables touch view testing. 64 // Enables touch view testing.
61 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this 65 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this
62 // flag is removed. 66 // flag is removed.
63 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; 67 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing";
64 68
65 // When this flag is set, system sounds will be played whether the 69 // When this flag is set, system sounds will be played whether the
66 // ChromeVox is enabled or not. 70 // ChromeVox is enabled or not.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 111
108 #if defined(OS_WIN) 112 #if defined(OS_WIN)
109 // Force Ash to open its root window on the desktop, even on Windows 8 where 113 // Force Ash to open its root window on the desktop, even on Windows 8 where
110 // it would normally end up in metro. 114 // it would normally end up in metro.
111 const char kForceAshToDesktop[] = "ash-force-desktop"; 115 const char kForceAshToDesktop[] = "ash-force-desktop";
112 116
113 #endif 117 #endif
114 118
115 } // namespace switches 119 } // namespace switches
116 } // namespace ash 120 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698