| 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 #include "sky/engine/config.h" | 5 #include "sky/engine/config.h" |
| 6 #include "sky/engine/core/script/dart_controller.h" | 6 #include "sky/engine/core/script/dart_controller.h" |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| 11 #include "sky/engine/bindings2/builtin.h" | 11 #include "sky/engine/bindings/builtin.h" |
| 12 #include "sky/engine/bindings2/builtin_natives.h" | 12 #include "sky/engine/bindings/builtin_natives.h" |
| 13 #include "sky/engine/bindings2/builtin_sky.h" | 13 #include "sky/engine/bindings/builtin_sky.h" |
| 14 #include "sky/engine/core/app/AbstractModule.h" | 14 #include "sky/engine/core/app/AbstractModule.h" |
| 15 #include "sky/engine/core/app/Module.h" | 15 #include "sky/engine/core/app/Module.h" |
| 16 #include "sky/engine/core/dom/Element.h" | 16 #include "sky/engine/core/dom/Element.h" |
| 17 #include "sky/engine/core/frame/LocalFrame.h" | 17 #include "sky/engine/core/frame/LocalFrame.h" |
| 18 #include "sky/engine/core/html/imports/HTMLImport.h" | 18 #include "sky/engine/core/html/imports/HTMLImport.h" |
| 19 #include "sky/engine/core/html/imports/HTMLImportChild.h" | 19 #include "sky/engine/core/html/imports/HTMLImportChild.h" |
| 20 #include "sky/engine/core/loader/FrameLoaderClient.h" | 20 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 21 #include "sky/engine/core/script/dart_dependency_catcher.h" | 21 #include "sky/engine/core/script/dart_dependency_catcher.h" |
| 22 #include "sky/engine/core/script/dart_loader.h" | 22 #include "sky/engine/core/script/dart_loader.h" |
| 23 #include "sky/engine/core/script/dom_dart_state.h" | 23 #include "sky/engine/core/script/dom_dart_state.h" |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 261 |
| 262 CHECK(Dart_SetVMFlags(argc, argv)); | 262 CHECK(Dart_SetVMFlags(argc, argv)); |
| 263 CHECK(Dart_Initialize(IsolateCreateCallback, | 263 CHECK(Dart_Initialize(IsolateCreateCallback, |
| 264 nullptr, // Isolate interrupt callback. | 264 nullptr, // Isolate interrupt callback. |
| 265 UnhandledExceptionCallback, IsolateShutdownCallback, | 265 UnhandledExceptionCallback, IsolateShutdownCallback, |
| 266 // File IO callbacks. | 266 // File IO callbacks. |
| 267 nullptr, nullptr, nullptr, nullptr, nullptr)); | 267 nullptr, nullptr, nullptr, nullptr, nullptr)); |
| 268 } | 268 } |
| 269 | 269 |
| 270 } // namespace blink | 270 } // namespace blink |
| OLD | NEW |