OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef MOJO_APPS_JS_JS_APP_H_ | 5 #ifndef MOJO_SERVICES_JS_JS_APP_H_ |
6 #define MOJO_APPS_JS_JS_APP_H_ | 6 #define MOJO_SERVICES_JS_JS_APP_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/threading/thread.h" | 9 #include "base/threading/thread.h" |
10 #include "gin/public/isolate_holder.h" | 10 #include "gin/public/isolate_holder.h" |
11 #include "gin/shell_runner.h" | 11 #include "gin/shell_runner.h" |
12 #include "mojo/application/content_handler_factory.h" | 12 #include "mojo/application/content_handler_factory.h" |
13 #include "mojo/edk/js/mojo_runner_delegate.h" | 13 #include "mojo/edk/js/mojo_runner_delegate.h" |
14 #include "mojo/public/cpp/application/application_delegate.h" | 14 #include "mojo/public/cpp/application/application_delegate.h" |
15 #include "mojo/public/interfaces/application/application.mojom.h" | 15 #include "mojo/public/interfaces/application/application.mojom.h" |
16 #include "mojo/public/interfaces/application/shell.mojom.h" | 16 #include "mojo/public/interfaces/application/shell.mojom.h" |
17 #include "mojo/services/public/interfaces/network/url_loader.mojom.h" | 17 #include "mojo/services/public/interfaces/network/url_loader.mojom.h" |
18 | 18 |
19 namespace mojo { | 19 namespace mojo { |
20 namespace apps { | 20 namespace js { |
21 | 21 |
22 class JSApp; | 22 class JSApp; |
23 class ApplicationDelegateImpl; | 23 class ApplicationDelegateImpl; |
24 | 24 |
25 // Each JavaScript app started by content handler runs on its own thread and | 25 // Each JavaScript app started by content handler runs on its own thread and |
26 // in its own V8 isolate. This class represents one running JS app. | 26 // in its own V8 isolate. This class represents one running JS app. |
27 | 27 |
28 class JSApp : public InterfaceImpl<Application>, | 28 class JSApp : public InterfaceImpl<Application>, |
29 public ContentHandlerFactory::HandledApplicationHolder { | 29 public ContentHandlerFactory::HandledApplicationHolder { |
30 public: | 30 public: |
(...skipping 22 matching lines...) Expand all Loading... |
53 js::MojoRunnerDelegate runner_delegate; | 53 js::MojoRunnerDelegate runner_delegate; |
54 gin::IsolateHolder isolate_holder_; | 54 gin::IsolateHolder isolate_holder_; |
55 scoped_ptr<gin::ShellRunner> shell_runner_; | 55 scoped_ptr<gin::ShellRunner> shell_runner_; |
56 std::string source_; | 56 std::string source_; |
57 std::string file_name_; | 57 std::string file_name_; |
58 ScopedMessagePipeHandle requestor_handle_; | 58 ScopedMessagePipeHandle requestor_handle_; |
59 | 59 |
60 DISALLOW_COPY_AND_ASSIGN(JSApp); | 60 DISALLOW_COPY_AND_ASSIGN(JSApp); |
61 }; | 61 }; |
62 | 62 |
63 } // namespace apps | 63 } // namespace js |
64 } // namespace mojo | 64 } // namespace mojo |
65 | 65 |
66 #endif // MOJO_APPS_JS_JS_APP_H_ | 66 #endif // MOJO_SERVICES_JS_JS_APP_H_ |
OLD | NEW |