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

Unified Diff: android_webview/browser/deferred_gpu_command_service.h

Issue 623833003: replace OVERRIDE and FINAL with override and final in android_webview/ (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: 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();
« no previous file with comments | « android_webview/browser/browser_view_renderer.cc ('k') | android_webview/browser/global_tile_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698