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

Unified Diff: content/common/gpu/gpu_memory_buffer_factory_win.cc

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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
Index: content/common/gpu/gpu_memory_buffer_factory_win.cc
diff --git a/content/common/gpu/gpu_memory_buffer_factory_win.cc b/content/common/gpu/gpu_memory_buffer_factory_win.cc
index a320c0c3e558ca4b0ec3fc91f1e7339ec1f902d2..97998ec0e21a30ea59e21cc24cfb361e5f9e637e 100644
--- a/content/common/gpu/gpu_memory_buffer_factory_win.cc
+++ b/content/common/gpu/gpu_memory_buffer_factory_win.cc
@@ -18,19 +18,19 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
const gfx::GpuMemoryBufferHandle& handle,
const gfx::Size& size,
unsigned internalformat,
- unsigned usage) OVERRIDE {
+ unsigned usage) override {
NOTREACHED();
return gfx::GpuMemoryBufferHandle();
}
virtual void DestroyGpuMemoryBuffer(
- const gfx::GpuMemoryBufferHandle& handle) OVERRIDE {
+ const gfx::GpuMemoryBufferHandle& handle) override {
NOTREACHED();
}
virtual scoped_refptr<gfx::GLImage> CreateImageForGpuMemoryBuffer(
const gfx::GpuMemoryBufferHandle& handle,
const gfx::Size& size,
unsigned internalformat,
- int client_id) OVERRIDE {
+ int client_id) override {
switch (handle.type) {
case gfx::SHARED_MEMORY_BUFFER: {
scoped_refptr<gfx::GLImageSharedMemory> image(
« no previous file with comments | « content/common/gpu/gpu_memory_buffer_factory_ozone.cc ('k') | content/common/gpu/gpu_memory_buffer_factory_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698