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

Unified Diff: ppapi/shared_impl/thread_aware_callback_unittest.cc

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « ppapi/shared_impl/test_globals.h ('k') | ppapi/shared_impl/tracked_callback_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/thread_aware_callback_unittest.cc
diff --git a/ppapi/shared_impl/thread_aware_callback_unittest.cc b/ppapi/shared_impl/thread_aware_callback_unittest.cc
index 5173753781947da4dbf646a7ed908c95c9b5a4a9..9e9189b0668a3337eac07a8f5490d97666483e58 100644
--- a/ppapi/shared_impl/thread_aware_callback_unittest.cc
+++ b/ppapi/shared_impl/thread_aware_callback_unittest.cc
@@ -58,14 +58,14 @@ class ThreadAwareCallbackMultiThreadTest
}
// proxy::PluginProxyMultiThreadTest implementation.
- virtual void SetUpTestOnMainThread() OVERRIDE {
+ virtual void SetUpTestOnMainThread() override {
ProxyAutoLock auto_lock;
main_thread_callback_.reset(
ThreadAwareCallback<CallbackFunc>::Create(&MainThreadCallbackBody));
}
- virtual void SetUpTestOnSecondaryThread() OVERRIDE {
+ virtual void SetUpTestOnSecondaryThread() override {
{
ProxyAutoLock auto_lock;
main_thread_callback_->RunOnTargetThread(this);
@@ -103,14 +103,14 @@ class ThreadAwareCallbackAbortTest : public proxy::PluginProxyMultiThreadTest {
virtual ~ThreadAwareCallbackAbortTest() {}
// proxy::PluginProxyMultiThreadTest implementation.
- virtual void SetUpTestOnMainThread() OVERRIDE {
+ virtual void SetUpTestOnMainThread() override {
ProxyAutoLock auto_lock;
main_thread_callback_.reset(
ThreadAwareCallback<CallbackFunc>::Create(&MainThreadCallbackBody));
}
- virtual void SetUpTestOnSecondaryThread() OVERRIDE {
+ virtual void SetUpTestOnSecondaryThread() override {
{
ProxyAutoLock auto_lock;
main_thread_message_loop_proxy_->PostTask(
« no previous file with comments | « ppapi/shared_impl/test_globals.h ('k') | ppapi/shared_impl/tracked_callback_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698