Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Side by Side Diff: sky/engine/core/script/dart_controller.cc

Issue 915293003: Rename sky/engine/bindings2 to sky/engine/bindings (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: more better Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/core/page/EventHandler.cpp ('k') | sky/engine/web/WebDocument.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « sky/engine/core/page/EventHandler.cpp ('k') | sky/engine/web/WebDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698