| Index: mojo/apps/js/mojo_module.h
|
| diff --git a/mojo/bindings/js/core.h b/mojo/apps/js/mojo_module.h
|
| similarity index 69%
|
| copy from mojo/bindings/js/core.h
|
| copy to mojo/apps/js/mojo_module.h
|
| index bde327ce5ad169c7fd25817a12b368d03bd19a6e..98693b63e24b531043b85627bebba1707949f64c 100644
|
| --- a/mojo/bindings/js/core.h
|
| +++ b/mojo/apps/js/mojo_module.h
|
| @@ -2,21 +2,22 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef MOJO_BINDINGS_JS_CORE_H_
|
| -#define MOJO_BINDINGS_JS_CORE_H_
|
| +#ifndef MOJO_MODULE_H_
|
| +#define MOJO_MODULE_H_
|
|
|
| +#include "gin/gin_export.h"
|
| #include "v8/include/v8.h"
|
|
|
| namespace mojo {
|
| -namespace js {
|
| +namespace apps {
|
|
|
| -class Core {
|
| +class Mojo {
|
| public:
|
| static const char kModuleName[];
|
| static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
|
| };
|
|
|
| -} // namespace js
|
| +} // namespace apps
|
| } // namespace mojo
|
|
|
| -#endif // MOJO_BINDINGS_JS_CORE_H_
|
| +#endif // MOJO_MODULE_H_
|
|
|