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

Side by Side Diff: ash/ash_switches.cc

Issue 9166014: Allow a Views client to provide a default frameview for window widgets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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 "ash/ash_switches.h" 5 #include "ash/ash_switches.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 10
(...skipping 16 matching lines...) Expand all
27 // Show only a single maximized window, like traditional non-Aura builds. 27 // Show only a single maximized window, like traditional non-Aura builds.
28 // Useful for low-resolution screens, such as on laptops. 28 // Useful for low-resolution screens, such as on laptops.
29 const char kAuraWindowModeCompact[] = "compact"; 29 const char kAuraWindowModeCompact[] = "compact";
30 30
31 // Default window management with multiple draggable windows. 31 // Default window management with multiple draggable windows.
32 const char kAuraWindowModeNormal[] = "normal"; 32 const char kAuraWindowModeNormal[] = "normal";
33 33
34 // Use Aura-style workspace window dragging and sizing. 34 // Use Aura-style workspace window dragging and sizing.
35 const char kAuraWorkspaceManager[] = "aura-workspace-manager"; 35 const char kAuraWorkspaceManager[] = "aura-workspace-manager";
36 36
37 // Use Kennedy-style dialog box frames.
38 const char kAuraKennedyDialogFrames[] = "aura-kennedy-dialog-frames";
39
37 } // namespace switches 40 } // namespace switches
38 } // namespace ash 41 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698