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

Side by Side Diff: ui/display/display_switches.h

Issue 2324163002: Add FakeDisplayDelegate for off device usage. (Closed)
Patch Set: Address msw comments. Created 4 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_DISPLAY_DISPLAY_SWITCHES_H_ 5 #ifndef UI_DISPLAY_DISPLAY_SWITCHES_H_
6 #define UI_DISPLAY_DISPLAY_SWITCHES_H_ 6 #define UI_DISPLAY_DISPLAY_SWITCHES_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ui/display/display_export.h" 10 #include "ui/display/display_export.h"
11 11
12 namespace switches { 12 namespace switches {
13 13
14 // Keep sorted. 14 // Keep sorted.
15 DISPLAY_EXPORT extern const char kEnableSoftwareMirroring[]; 15 DISPLAY_EXPORT extern const char kEnableSoftwareMirroring[];
16 DISPLAY_EXPORT extern const char kForceDeviceScaleFactor[]; 16 DISPLAY_EXPORT extern const char kForceDeviceScaleFactor[];
17 // TODO(kylechar): This overlaps with --screen-config. Unify flags and remove.
17 DISPLAY_EXPORT extern const char kHostWindowBounds[]; 18 DISPLAY_EXPORT extern const char kHostWindowBounds[];
19 DISPLAY_EXPORT extern const char kScreenConfig[];
18 DISPLAY_EXPORT extern const char kSecondaryDisplayLayout[]; 20 DISPLAY_EXPORT extern const char kSecondaryDisplayLayout[];
19 DISPLAY_EXPORT extern const char kUseFirstDisplayAsInternal[]; 21 DISPLAY_EXPORT extern const char kUseFirstDisplayAsInternal[];
20 22
21 #if defined(OS_CHROMEOS) 23 #if defined(OS_CHROMEOS)
22 DISPLAY_EXPORT extern const char kDisableDisplayColorCalibration[]; 24 DISPLAY_EXPORT extern const char kDisableDisplayColorCalibration[];
23 DISPLAY_EXPORT extern const char kEnableUnifiedDesktop[]; 25 DISPLAY_EXPORT extern const char kEnableUnifiedDesktop[];
24 #endif 26 #endif
25 27
26 } // namespace switches 28 } // namespace switches
27 29
28 #endif // UI_DISPLAY_DISPLAY_SWITCHES_H_ 30 #endif // UI_DISPLAY_DISPLAY_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698