| 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/public/cpp/system/data_pipe.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 DartLibraryProvider; | 21 class DartLibraryProvider; |
| 22 class DartSnapshotLoader; | 22 class DartSnapshotLoader; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 50 OwnPtr<DartSnapshotLoader> snapshot_loader_; | 50 OwnPtr<DartSnapshotLoader> snapshot_loader_; |
| 51 | 51 |
| 52 base::WeakPtrFactory<DartController> weak_factory_; | 52 base::WeakPtrFactory<DartController> weak_factory_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(DartController); | 54 DISALLOW_COPY_AND_ASSIGN(DartController); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } | 57 } |
| 58 | 58 |
| 59 #endif // SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ | 59 #endif // SKY_ENGINE_CORE_SCRIPT_DART_CONTROLLER_H_ |
| OLD | NEW |