Index: chrome/test/automation/javascript_execution_controller.cc |
diff --git a/chrome/test/automation/javascript_execution_controller.cc b/chrome/test/automation/javascript_execution_controller.cc |
index 9918bb1924a2b3286e522a97eea82e81fafd232a..cd058cf2923e0c489b866e33061bb7460f8c8080 100644 |
--- a/chrome/test/automation/javascript_execution_controller.cc |
+++ b/chrome/test/automation/javascript_execution_controller.cc |
@@ -16,8 +16,6 @@ int JavaScriptExecutionController::timeout_ms_ = -1; |
JavaScriptExecutionController::JavaScriptExecutionController() {} |
-JavaScriptExecutionController::~JavaScriptExecutionController() {} |
- |
bool JavaScriptExecutionController::ExecuteJavaScript( |
const std::string& script) { |
scoped_ptr<Value> return_value; |
@@ -30,6 +28,8 @@ bool JavaScriptExecutionController::ExecuteAsyncJavaScript( |
return ExecuteAndParseHelper(WrapAsyncJavaScript(script), &return_value); |
} |
+JavaScriptExecutionController::~JavaScriptExecutionController() {} |
+ |
void JavaScriptExecutionController::Remove(int handle) { |
handle_to_object_.erase(handle); |
if (handle_to_object_.empty()) |