John McCutchan 76da439f44 Add Observatory to sky dart_controller
- Bump Dart and Observatory DEPS to 45576 and 45565 respectively.
- Include 'dart:io' in snapshot
- Add 'dart:io' native bindings to sky bindings.
- Initialize 'dart:io' in sky dart_controller.
- Include Observatory and service isolate resources in build.
- Bring up service isolate.
- Start handle watcher isolate from service isolate (hides handle watcher isolate from debugger and Observatory).
- Hook up debugger.

R=eseidel@chromium.org

Review URL: https://codereview.chromium.org/1107803002
2015-05-06 15:36:12 -07:00

35 lines
850 B
C++

// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SKY_ENGINE_BINDINGS_BUILTIN_H_
#define SKY_ENGINE_BINDINGS_BUILTIN_H_
#include "base/macros.h"
#include "dart/runtime/include/dart_api.h"
namespace blink {
class Builtin {
public:
// Note: Changes to this enum should be accompanied with changes to
// the builtin_libraries_ array in builtin.cc.
enum BuiltinLibraryId {
kBuiltinLibrary,
kSkyLibrary,
kMojoInternalLibrary,
kIOLibrary,
kInvalidLibrary,
};
static void SetNativeResolver(BuiltinLibraryId id);
static Dart_Handle LoadAndCheckLibrary(BuiltinLibraryId id);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(Builtin);
};
} // namespace blink
#endif // SKY_ENGINE_BINDINGS_BUILTIN_H_