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

Side by Side Diff: ui/aura/aura_switches.cc

Issue 10255020: Get the default device scale factor from monitor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 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 unified diff | Download patch | Annotate | Revision Log
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 "ui/aura/aura_switches.h" 5 #include "ui/aura/aura_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
11 // Enable the holding of mouse movements in order to throttle window resizing. 11 // Enable the holding of mouse movements in order to throttle window resizing.
12 const char kAuraDisableHoldMouseMoves[] = "aura-disable-hold-mouse-moves"; 12 const char kAuraDisableHoldMouseMoves[] = "aura-disable-hold-mouse-moves";
13 13
14 // Initial dimensions for the host window in the form "1024x768". 14 // Initial dimensions for the host window in the form "1024x768".
15 const char kAuraHostWindowSize[] = "aura-host-window-size"; 15 const char kAuraHostWindowSize[] = "aura-host-window-size";
16 16
17 // Whether to use the full screen for aura's host window. 17 // Whether to use the full screen for aura's host window.
18 const char kAuraHostWindowUseFullscreen[] = "aura-host-window-use-fullscreen"; 18 const char kAuraHostWindowUseFullscreen[] = "aura-host-window-use-fullscreen";
19 19
20 // The default device scale factor to apply to contents in the absence of
21 // a viewport meta tag.
22 const char kDefaultDeviceScaleFactor[] = "default-device-scale-factor";
23
20 } // namespace switches 24 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698