summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webkitclient_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/webkitclient_impl.h')
-rw-r--r--webkit/glue/webkitclient_impl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/webkit/glue/webkitclient_impl.h b/webkit/glue/webkitclient_impl.h
index 302a99f..1c4f9c7 100644
--- a/webkit/glue/webkitclient_impl.h
+++ b/webkit/glue/webkitclient_impl.h
@@ -76,12 +76,15 @@ class WebKitClientImpl : public WebKit::WebKitClient {
void SuspendSharedTimer();
void ResumeSharedTimer();
- private:
+ // Hack for http://crbug.com/71735.
+ // TODO(jamesr): move this back to the private section once
+ // http://crbug.com/72007 is fixed.
void DoTimeout() {
if (shared_timer_func_ && !shared_timer_suspended_)
shared_timer_func_();
}
+ private:
MessageLoop* main_loop_;
base::OneShotTimer<WebKitClientImpl> shared_timer_;
void (*shared_timer_func_)();