OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "apps/switches.h" | 5 #ifndef MOJO_APPS_JS_V8_ENVIRONMENT_H_ |
| 6 #define MOJO_APPS_JS_V8_ENVIRONMENT_H_ |
6 | 7 |
| 8 namespace mojo { |
7 namespace apps { | 9 namespace apps { |
8 | 10 |
9 // Loads an app from the specified directory and launches it. | 11 void InitializeV8(); |
10 const char kLoadAndLaunchApp[] = "load-and-launch-app"; | |
11 | 12 |
12 } // namespace apps | 13 } // namespace apps |
| 14 } // mojo |
| 15 |
| 16 #endif // MOJO_APPS_JS_V8_ENVIRONMENT_H_ |
OLD | NEW |