OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ | 5 #ifndef SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ |
6 #define SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ | 6 #define SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
11 #include "dart/runtime/include/dart_api.h" | 11 #include "dart/runtime/include/dart_api.h" |
12 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" | 12 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" |
13 #include "sky/engine/wtf/OwnPtr.h" | 13 #include "sky/engine/wtf/OwnPtr.h" |
14 #include "sky/engine/wtf/text/AtomicString.h" | 14 #include "sky/engine/wtf/text/AtomicString.h" |
15 #include "sky/engine/wtf/text/TextPosition.h" | 15 #include "sky/engine/wtf/text/TextPosition.h" |
16 | 16 |
17 namespace blink { | 17 namespace blink { |
18 class AbstractModule; | 18 class AbstractModule; |
19 class BuiltinSky; | 19 class BuiltinSky; |
20 class DOMDartState; | 20 class DOMDartState; |
| 21 class DartSnapshotLoader; |
21 class DartValue; | 22 class DartValue; |
22 class HTMLScriptElement; | 23 class HTMLScriptElement; |
23 class KURL; | 24 class KURL; |
24 class View; | 25 class View; |
25 | 26 |
26 class DartController { | 27 class DartController { |
27 public: | 28 public: |
28 DartController(); | 29 DartController(); |
29 ~DartController(); | 30 ~DartController(); |
30 | 31 |
31 static void InitVM(); | 32 static void InitVM(); |
32 | 33 |
33 typedef base::Callback<void(RefPtr<AbstractModule>, RefPtr<DartValue>)> | 34 typedef base::Callback<void(RefPtr<AbstractModule>, RefPtr<DartValue>)> |
34 LoadFinishedCallback; | 35 LoadFinishedCallback; |
35 | 36 |
36 // Can either issue the url load ourselves or take an existing response: | 37 // Can either issue the url load ourselves or take an existing response: |
37 void LoadMainLibrary(const KURL& url, mojo::URLResponsePtr response = nullptr)
; | 38 void LoadMainLibrary(const KURL& url, mojo::URLResponsePtr response = nullptr)
; |
| 39 void LoadSnapshot(const KURL& url, mojo::URLResponsePtr response = nullptr); |
38 | 40 |
39 void LoadScriptInModule(AbstractModule* module, | 41 void LoadScriptInModule(AbstractModule* module, |
40 const String& source, | 42 const String& source, |
41 const TextPosition& textPosition, | 43 const TextPosition& textPosition, |
42 const LoadFinishedCallback& load_finished_callback); | 44 const LoadFinishedCallback& load_finished_callback); |
43 void ExecuteLibraryInModule(AbstractModule* module, | 45 void ExecuteLibraryInModule(AbstractModule* module, |
44 Dart_Handle library, | 46 Dart_Handle library, |
45 HTMLScriptElement* script); | 47 HTMLScriptElement* script); |
46 | 48 |
47 void ClearForClose(); | 49 void ClearForClose(); |
48 void CreateIsolateFor(PassOwnPtr<DOMDartState> dom_dart_state); | 50 void CreateIsolateFor(PassOwnPtr<DOMDartState> dom_dart_state); |
49 void InstallView(View* view); | 51 void InstallView(View* view); |
50 | 52 |
51 DOMDartState* dart_state() const { return dom_dart_state_.get(); } | 53 DOMDartState* dart_state() const { return dom_dart_state_.get(); } |
52 | 54 |
53 private: | 55 private: |
54 bool ImportChildLibraries(AbstractModule* module, Dart_Handle library); | 56 bool ImportChildLibraries(AbstractModule* module, Dart_Handle library); |
55 Dart_Handle CreateLibrary(AbstractModule* module, | 57 Dart_Handle CreateLibrary(AbstractModule* module, |
56 const String& source, | 58 const String& source, |
57 const TextPosition& position); | 59 const TextPosition& position); |
58 | 60 |
59 void DidLoadMainLibrary(KURL url); | 61 void DidLoadMainLibrary(KURL url); |
| 62 void DidLoadSnapshot(); |
60 | 63 |
61 OwnPtr<DOMDartState> dom_dart_state_; | 64 OwnPtr<DOMDartState> dom_dart_state_; |
62 OwnPtr<BuiltinSky> builtin_sky_; | 65 OwnPtr<BuiltinSky> builtin_sky_; |
| 66 OwnPtr<DartSnapshotLoader> snapshot_loader_; |
63 | 67 |
64 base::WeakPtrFactory<DartController> weak_factory_; | 68 base::WeakPtrFactory<DartController> weak_factory_; |
65 | 69 |
66 DISALLOW_COPY_AND_ASSIGN(DartController); | 70 DISALLOW_COPY_AND_ASSIGN(DartController); |
67 }; | 71 }; |
68 | 72 |
69 } | 73 } |
70 | 74 |
71 #endif // SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ | 75 #endif // SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ |
OLD | NEW |