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

Unified Diff: base/message_loop_proxy_impl.h

Issue 8520018: Add OVERRIDE to base/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extra header Created 9 years, 1 month 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
« no previous file with comments | « base/message_loop.h ('k') | base/message_pump_default.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_loop_proxy_impl.h
diff --git a/base/message_loop_proxy_impl.h b/base/message_loop_proxy_impl.h
index 29663940c5467db839392b2521ea41051fab713b..0c44c826c8751239e7f9a01374de40ffa74bc5e0 100644
--- a/base/message_loop_proxy_impl.h
+++ b/base/message_loop_proxy_impl.h
@@ -23,33 +23,33 @@ class BASE_EXPORT MessageLoopProxyImpl
// MessageLoopProxy implementation
virtual bool PostTask(const tracked_objects::Location& from_here,
- Task* task);
+ Task* task) OVERRIDE;
virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
Task* task,
- int64 delay_ms);
+ int64 delay_ms) OVERRIDE;
virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
- Task* task);
+ Task* task) OVERRIDE;
virtual bool PostNonNestableDelayedTask(
const tracked_objects::Location& from_here,
Task* task,
- int64 delay_ms);
+ int64 delay_ms) OVERRIDE;
virtual bool PostTask(const tracked_objects::Location& from_here,
- const base::Closure& task);
+ const base::Closure& task) OVERRIDE;
virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
const base::Closure& task,
- int64 delay_ms);
+ int64 delay_ms) OVERRIDE;
virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
- const base::Closure& task);
+ const base::Closure& task) OVERRIDE;
virtual bool PostNonNestableDelayedTask(
const tracked_objects::Location& from_here,
const base::Closure& task,
- int64 delay_ms);
- virtual bool BelongsToCurrentThread();
+ int64 delay_ms) OVERRIDE;
+ virtual bool BelongsToCurrentThread() OVERRIDE;
protected:
// Override OnDestruct so that we can delete the object on the target message
// loop if it still exists.
- virtual void OnDestruct() const;
+ virtual void OnDestruct() const OVERRIDE;
private:
MessageLoopProxyImpl();
« no previous file with comments | « base/message_loop.h ('k') | base/message_pump_default.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698