| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef SKY_ENGINE_CORE_SCRIPT_DART_INIT_H_ |
| 6 #define SKY_ENGINE_CORE_SCRIPT_DART_INIT_H_ |
| 7 |
| 8 #include "dart/runtime/include/dart_api.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 extern const uint8_t* kDartVmIsolateSnapshotBuffer; |
| 13 extern const uint8_t* kDartIsolateSnapshotBuffer; |
| 14 |
| 15 void InitDartVM(); |
| 16 Dart_Handle DartLibraryTagHandler(Dart_LibraryTag tag, |
| 17 Dart_Handle library, |
| 18 Dart_Handle url); |
| 19 void EnsureHandleWatcherStarted(); |
| 20 |
| 21 } |
| 22 |
| 23 #endif // SKY_ENGINE_CORE_SCRIPT_DART_INIT_H_ |
| OLD | NEW |