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

Side by Side Diff: content/shell/common/shell_switches.h

Issue 2431753002: Mus experiment in content shell on Android.
Patch Set: Fix mac bot Created 4 years, 1 month 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 (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 // Defines all the "content_shell" command-line switches. 5 // Defines all the "content_shell" command-line switches.
6 6
7 #ifndef CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ 7 #ifndef CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_
8 #define CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ 8 #define CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 namespace switches { 13 namespace switches {
14 14
15 extern const char kContentBrowserTest[]; 15 extern const char kContentBrowserTest[];
16 extern const char kContentShellDataPath[]; 16 extern const char kContentShellDataPath[];
17 extern const char kContentShellHostWindowSize[];
17 extern const char kCrashDumpsDir[]; 18 extern const char kCrashDumpsDir[];
18 extern const char kExposeInternalsForTesting[]; 19 extern const char kExposeInternalsForTesting[];
19 extern const char kIsolateSitesForTesting[]; 20 extern const char kIsolateSitesForTesting[];
21 extern const char kShowMusDemoButton[];
20 extern const char kRegisterFontFiles[]; 22 extern const char kRegisterFontFiles[];
21 extern const char kContentShellHostWindowSize[];
22 23
23 // Returns list of extra font files to be made accessible to the renderer. 24 // Returns list of extra font files to be made accessible to the renderer.
24 std::vector<std::string> GetSideloadFontFiles(); 25 std::vector<std::string> GetSideloadFontFiles();
25 26
26 // Tells if content shell is running layout tests. 27 // Tells if content shell is running layout tests.
27 // TODO(lukasza): The function below somewhat violates the layering (by 28 // TODO(lukasza): The function below somewhat violates the layering (by
28 // enabling shell -> layout_tests dependency) but at least narrows the extent of 29 // enabling shell -> layout_tests dependency) but at least narrows the extent of
29 // the dependency to a single switch... 30 // the dependency to a single switch...
30 bool IsRunLayoutTestSwitchPresent(); 31 bool IsRunLayoutTestSwitchPresent();
31 32
32 } // namespace switches 33 } // namespace switches
33 34
34 #endif // CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_ 35 #endif // CONTENT_SHELL_COMMON_SHELL_SWITCHES_H_
OLDNEW
« no previous file with comments | « content/shell/browser/shell_content_browser_client.cc ('k') | content/shell/common/shell_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698