Index: content/shell/renderer/test_runner/web_test_proxy.cc |
diff --git a/content/shell/renderer/test_runner/web_test_proxy.cc b/content/shell/renderer/test_runner/web_test_proxy.cc |
index 860e110fdb0a70b1fad5b2d0a9a78c48fcc326dd..fbf4881d51c9dab2914356ae23a3a0a88dd12ef6 100644 |
--- a/content/shell/renderer/test_runner/web_test_proxy.cc |
+++ b/content/shell/renderer/test_runner/web_test_proxy.cc |
@@ -87,7 +87,7 @@ class HostMethodTask : public WebMethodTask<WebTestProxyBase> { |
HostMethodTask(WebTestProxyBase* object, CallbackMethodType callback) |
: WebMethodTask<WebTestProxyBase>(object), callback_(callback) {} |
- virtual void RunIfValid() override { (object_->*callback_)(); } |
+ void RunIfValid() override { (object_->*callback_)(); } |
private: |
CallbackMethodType callback_; |