ebbc2020a2
Review URL: https://codereview.chromium.org//14341015 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@22032 260f80e4-7a28-3924-810f-c04153c831b5
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef BIN_EXTENSIONS_H_
|
|
#define BIN_EXTENSIONS_H_
|
|
|
|
#include "include/dart_api.h"
|
|
#include "platform/globals.h"
|
|
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
class Extensions {
|
|
public:
|
|
// TODO(whesse): Make extension load from a relative path relative to
|
|
// the library it is in. Currently loads from current working directory.
|
|
static Dart_Handle LoadExtension(const char* extension_url,
|
|
Dart_Handle parent_library);
|
|
|
|
private:
|
|
// The returned string must be freed.
|
|
static char* Concatenate(const char** strings);
|
|
|
|
// Platform-specific implementations.
|
|
static void* LoadExtensionLibrary(const char* library_path,
|
|
const char* extension_name);
|
|
static void* ResolveSymbol(void* lib_handle, const char* symbol);
|
|
|
|
DISALLOW_ALLOCATION();
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(Extensions);
|
|
};
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // BIN_EXTENSIONS_H_
|