mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
The bindings, core, and application libraries are now referred to as, e.g.: package:mojo/public/dart/core.dart Since the handle watcher remains in the snapshot, it no longer refers to types defined in core.dart. References to types defined in core.dart are also removed from mojo_natives.cc. In Dart packaged apps, the SDK is zipped up under mojo/public/dart. For embedder tests, the SDK is copied into the generated source output directory. A base_dir parameter is added to the 'dart_package' and 'mojom' GN macros so that consumers of the Mojo SDK can all import using the same URIs regardless of where the SDK lives in their source trees. BUG= R=erg@chromium.org Review URL: https://codereview.chromium.org/1027603002
34 lines
834 B
C++
34 lines
834 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,
|
|
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_
|