Index: android_webview/browser/deferred_gpu_command_service.h |
diff --git a/android_webview/browser/deferred_gpu_command_service.h b/android_webview/browser/deferred_gpu_command_service.h |
index c84df5b6aace45ba737a38973e9469d254c1b20f..bd361b7ca135f37ca91cbe658684981a5c151770 100644 |
--- a/android_webview/browser/deferred_gpu_command_service.h |
+++ b/android_webview/browser/deferred_gpu_command_service.h |
@@ -36,11 +36,11 @@ class DeferredGpuCommandService |
static void SetInstance(); |
static DeferredGpuCommandService* GetInstance(); |
- virtual void ScheduleTask(const base::Closure& task) OVERRIDE; |
- virtual void ScheduleIdleWork(const base::Closure& task) OVERRIDE; |
- virtual bool UseVirtualizedGLContexts() OVERRIDE; |
+ virtual void ScheduleTask(const base::Closure& task) override; |
+ virtual void ScheduleIdleWork(const base::Closure& task) override; |
+ virtual bool UseVirtualizedGLContexts() override; |
virtual scoped_refptr<gpu::gles2::ShaderTranslatorCache> |
- shader_translator_cache() OVERRIDE; |
+ shader_translator_cache() override; |
void RunTasks(); |
// If |is_idle| is false, this will only run older idle tasks. |
@@ -50,8 +50,8 @@ class DeferredGpuCommandService |
// idle tasks during the idle run. |
void PerformAllIdleWork(); |
- virtual void AddRef() const OVERRIDE; |
- virtual void Release() const OVERRIDE; |
+ virtual void AddRef() const override; |
+ virtual void Release() const override; |
protected: |
virtual ~DeferredGpuCommandService(); |