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

Unified Diff: content/gpu/gpu_watchdog_thread.h

Issue 6463013: Add support for base::Closure in the MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: missed one. Off with...my?...head! Created 9 years, 8 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
Index: content/gpu/gpu_watchdog_thread.h
diff --git a/content/gpu/gpu_watchdog_thread.h b/content/gpu/gpu_watchdog_thread.h
index 68aeea787efbd0df83e1536f27344baf5ff41bf9..6d7f3deb031dd6855e07a887875965df0d0a5aed 100644
--- a/content/gpu/gpu_watchdog_thread.h
+++ b/content/gpu/gpu_watchdog_thread.h
@@ -39,8 +39,8 @@ class GpuWatchdogThread : public base::Thread,
virtual ~GpuWatchdogTaskObserver();
// Implements MessageLoop::TaskObserver.
- virtual void WillProcessTask(const Task* task);
- virtual void DidProcessTask(const Task* task);
+ virtual void WillProcessTask(base::TimeTicks time_posted) OVERRIDE;
+ virtual void DidProcessTask(base::TimeTicks time_posted) OVERRIDE;
private:
GpuWatchdogThread* watchdog_;

Powered by Google App Engine
This is Rietveld 408576698