| Index: content/common/gpu/gpu_memory_buffer_factory_ozone.cc
|
| diff --git a/content/common/gpu/gpu_memory_buffer_factory_ozone.cc b/content/common/gpu/gpu_memory_buffer_factory_ozone.cc
|
| index 0ec6d34a7c44ee2ece3701cf5ca5339fd5b09e26..a077915851240574234d085da267eb044059b6a2 100644
|
| --- a/content/common/gpu/gpu_memory_buffer_factory_ozone.cc
|
| +++ b/content/common/gpu/gpu_memory_buffer_factory_ozone.cc
|
| @@ -19,7 +19,7 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
|
| const gfx::GpuMemoryBufferHandle& handle,
|
| const gfx::Size& size,
|
| unsigned internalformat,
|
| - unsigned usage) OVERRIDE {
|
| + unsigned usage) override {
|
| switch (handle.type) {
|
| case gfx::OZONE_NATIVE_BUFFER:
|
| return ozone_buffer_factory_.CreateGpuMemoryBuffer(
|
| @@ -32,7 +32,7 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
|
| }
|
| }
|
| virtual void DestroyGpuMemoryBuffer(
|
| - const gfx::GpuMemoryBufferHandle& handle) OVERRIDE {
|
| + const gfx::GpuMemoryBufferHandle& handle) override {
|
| switch (handle.type) {
|
| case gfx::OZONE_NATIVE_BUFFER:
|
| ozone_buffer_factory_.DestroyGpuMemoryBuffer(handle.global_id);
|
| @@ -46,7 +46,7 @@ class GpuMemoryBufferFactoryImpl : public GpuMemoryBufferFactory {
|
| 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(
|
|
|