| Index: Source/bindings/dart/DartController.h
|
| diff --git a/Source/bindings/dart/DartController.h b/Source/bindings/dart/DartController.h
|
| index 4f8c0c906a28d4425e278e39dc0563a9c7cc52e9..ddb265e14d618a49ceae96e14d8d3c0a48d2949c 100644
|
| --- a/Source/bindings/dart/DartController.h
|
| +++ b/Source/bindings/dart/DartController.h
|
| @@ -79,7 +79,7 @@ public:
|
| Dart_Handle callFunction(Dart_Handle function, int argc, Dart_Handle* argv);
|
|
|
| LocalFrame* frame() const { return m_frame; }
|
| - void collectScriptStates(V8ScriptState* v8ScriptState, Vector<DartScriptState*>& result);
|
| + void collectScriptStates(V8ScriptState*, Vector<DartScriptState*>& result);
|
| void collectScriptStatesForIsolate(Dart_Isolate, v8::Handle<v8::Context> v8Context, Vector<DartScriptState*>& result);
|
| DartScriptState* lookupScriptState(Dart_Isolate, v8::Handle<v8::Context> v8Context, intptr_t libraryId);
|
|
|
| @@ -94,7 +94,7 @@ private:
|
| static void initVMIfNeeded();
|
|
|
| static Dart_Isolate createIsolate(const char* scriptURL, const char* entryPoint, Document*, bool isDOMEnabled, bool isDebuggerEnabled, char** errorMessage);
|
| - static void shutdownIsolate(Dart_Isolate);
|
| + void shutdownIsolate(Dart_Isolate);
|
|
|
| Dart_Isolate createDOMEnabledIsolate(const String& scriptURL, const String& entryPoint, Document*);
|
| void scheduleScriptExecution(const String&, Dart_Isolate, PassRefPtr<DartAsyncLoader>, PassRefPtr<DartScriptInfo>);
|
|
|