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

Unified Diff: gpu/command_buffer/service/async_pixel_transfer_manager_stub.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_stub.cc
diff --git a/gpu/command_buffer/service/async_pixel_transfer_manager_stub.cc b/gpu/command_buffer/service/async_pixel_transfer_manager_stub.cc
index d5f96b03b73460c1073561812b7f96a2f54abfa4..4b8ce1d17857e2f2bcd1a7f6e980304bc2d41348 100644
--- a/gpu/command_buffer/service/async_pixel_transfer_manager_stub.cc
+++ b/gpu/command_buffer/service/async_pixel_transfer_manager_stub.cc
@@ -17,12 +17,12 @@ class AsyncPixelTransferDelegateStub : public AsyncPixelTransferDelegate {
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:
DISALLOW_COPY_AND_ASSIGN(AsyncPixelTransferDelegateStub);

Powered by Google App Engine
This is Rietveld 408576698