| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |