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 "ui/base/ui_base_switches.h" | 5 #include "ui/base/ui_base_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 #if defined(OS_MACOSX) && !defined(OS_IOS) | 9 #if defined(OS_MACOSX) && !defined(OS_IOS) |
10 // Enable use of cross-process CALayers to display content directly from the | 10 // Enable use of cross-process CALayers to display content directly from the |
(...skipping 26 matching lines...) Expand all Loading... | |
37 const char kEnableTouchEditing[] = "enable-touch-editing"; | 37 const char kEnableTouchEditing[] = "enable-touch-editing"; |
38 | 38 |
39 // The language file that we want to try to open. Of the form | 39 // The language file that we want to try to open. Of the form |
40 // language[-country] where language is the 2 letter code from ISO-639. | 40 // language[-country] where language is the 2 letter code from ISO-639. |
41 const char kLang[] = "lang"; | 41 const char kLang[] = "lang"; |
42 | 42 |
43 // Disable ui::MessageBox. This is useful when running as part of scripts that | 43 // Disable ui::MessageBox. This is useful when running as part of scripts that |
44 // do not have a user interface. | 44 // do not have a user interface. |
45 const char kNoMessageBox[] = "no-message-box"; | 45 const char kNoMessageBox[] = "no-message-box"; |
46 | 46 |
47 // On Windows only: requests that Chrome connect to the running Metro viewer | |
48 // process. | |
49 const char kViewerConnect[] = "viewer-connect"; | |
Ken Russell (switch to Gerrit)
2014/09/02 23:57:29
This name is confusing; I'd suggest something like
luken
2014/09/03 00:58:07
Sure, cpu@ approves a change of name to this flag.
luken
2014/09/03 20:59:30
Done.
| |
50 | |
47 } // namespace switches | 51 } // namespace switches |
OLD | NEW |