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

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

Issue 2324163002: Add FakeDisplayDelegate for off device usage. (Closed)
Patch Set: Rebase and remove some debug logging. 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 kDisplayConfig[];
15 DISPLAY_EXPORT extern const char kEnableSoftwareMirroring[]; 16 DISPLAY_EXPORT extern const char kEnableSoftwareMirroring[];
16 DISPLAY_EXPORT extern const char kForceDeviceScaleFactor[]; 17 DISPLAY_EXPORT extern const char kForceDeviceScaleFactor[];
17 DISPLAY_EXPORT extern const char kHostWindowBounds[]; 18 DISPLAY_EXPORT extern const char kHostWindowBounds[];
rjkroege 2016/09/15 00:52:46 plz put TODO to remove this given its functionalit
kylechar 2016/09/15 17:31:55 Done.
18 DISPLAY_EXPORT extern const char kSecondaryDisplayLayout[]; 19 DISPLAY_EXPORT extern const char kSecondaryDisplayLayout[];
19 DISPLAY_EXPORT extern const char kUseFirstDisplayAsInternal[]; 20 DISPLAY_EXPORT extern const char kUseFirstDisplayAsInternal[];
20 21
21 #if defined(OS_CHROMEOS) 22 #if defined(OS_CHROMEOS)
22 DISPLAY_EXPORT extern const char kDisableDisplayColorCalibration[]; 23 DISPLAY_EXPORT extern const char kDisableDisplayColorCalibration[];
23 DISPLAY_EXPORT extern const char kEnableUnifiedDesktop[]; 24 DISPLAY_EXPORT extern const char kEnableUnifiedDesktop[];
24 #endif 25 #endif
25 26
26 } // namespace switches 27 } // namespace switches
27 28
28 #endif // UI_DISPLAY_DISPLAY_SWITCHES_H_ 29 #endif // UI_DISPLAY_DISPLAY_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698