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

Unified Diff: gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc

Issue 629913002: Replacing the OVERRIDE with override and FINAL with final in gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Included autogen python file for OVERRIDE 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
Index: gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc
diff --git a/gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc b/gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc
index 99103b81c65649f1403591a7b916c66e934af9ef..e28ff82abb2eb5f48273cedff60ae551d13ceaf0 100644
--- a/gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc
+++ b/gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc
@@ -71,7 +71,7 @@ class TransferThread : public base::Thread {
wait_for_init.Wait();
}
- virtual void CleanUp() OVERRIDE {
+ virtual void CleanUp() override {
surface_ = NULL;
context_ = NULL;
}
@@ -385,12 +385,12 @@ class AsyncPixelTransferDelegateShareGroup
virtual void AsyncTexImage2D(
const AsyncTexImage2DParams& tex_params,
const AsyncMemoryParams& mem_params,
- const base::Closure& bind_callback) OVERRIDE;
+ const base::Closure& bind_callback) override;
virtual void AsyncTexSubImage2D(
const AsyncTexSubImage2DParams& tex_params,
- const AsyncMemoryParams& mem_params) OVERRIDE;
- virtual bool TransferIsInProgress() OVERRIDE;
- virtual void WaitForTransferCompletion() OVERRIDE;
+ const AsyncMemoryParams& mem_params) override;
+ virtual bool TransferIsInProgress() override;
+ virtual void WaitForTransferCompletion() override;
private:
// A raw pointer is safe because the SharedState is owned by the Manager,

Powered by Google App Engine
This is Rietveld 408576698