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

Unified Diff: runtime/bin/extensions.h

Issue 1403613005: Fix build bot error. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/extensions_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/extensions.h
diff --git a/runtime/bin/extensions.h b/runtime/bin/extensions.h
index 7911131cded6e11ede85e1fe243b6419114f2157..e8284c459d5fc0edd5253550db39c19f0f2f9386 100644
--- a/runtime/bin/extensions.h
+++ b/runtime/bin/extensions.h
@@ -22,13 +22,16 @@ class Extensions {
Dart_Handle parent_library);
// Platform-specific implementations.
+ static void* LoadExtensionLibrary(const char* library_file);
+ static void* ResolveSymbol(void* lib_handle, const char* symbol);
+
+ private:
static Dart_Handle LoadExtensionLibrary(const char* library_file,
void** library);
static Dart_Handle ResolveSymbol(void* lib_handle,
const char* symbol,
void** init_func);
- private:
// The returned string must be freed.
static char* Concatenate(const char** strings);
« no previous file with comments | « no previous file | runtime/bin/extensions_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698