summaryrefslogtreecommitdiffstats
path: root/ash/content_support
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-03 09:23:45 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-03 16:24:05 +0000
commit10d6b38a855066b1400d96d0600c6e2aec42cbf1 (patch)
tree8df573d9a31973c64cd9c50e9a2a6a6fa5c49e82 /ash/content_support
parent90b32ca95485409ba5646c96a4ec0aa4b6216aee (diff)
downloadchromium_src-10d6b38a855066b1400d96d0600c6e2aec42cbf1.zip
chromium_src-10d6b38a855066b1400d96d0600c6e2aec42cbf1.tar.gz
chromium_src-10d6b38a855066b1400d96d0600c6e2aec42cbf1.tar.bz2
replace OVERRIDE and FINAL with override and final in ash/
BUG=417463 Review URL: https://codereview.chromium.org/621133002 Cr-Commit-Position: refs/heads/master@{#298040}
Diffstat (limited to 'ash/content_support')
-rw-r--r--ash/content_support/gpu_support_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ash/content_support/gpu_support_impl.h b/ash/content_support/gpu_support_impl.h
index 7842a29..e7b243d 100644
--- a/ash/content_support/gpu_support_impl.h
+++ b/ash/content_support/gpu_support_impl.h
@@ -18,10 +18,10 @@ class ASH_WITH_CONTENT_EXPORT GPUSupportImpl : public GPUSupport {
private:
// Overridden from GPUSupport:
- virtual bool IsPanelFittingDisabled() const OVERRIDE;
- virtual void DisableGpuWatchdog() OVERRIDE;
+ virtual bool IsPanelFittingDisabled() const override;
+ virtual void DisableGpuWatchdog() override;
virtual void GetGpuProcessHandles(
- const GetGpuProcessHandlesCallback& callback) const OVERRIDE;
+ const GetGpuProcessHandlesCallback& callback) const override;
DISALLOW_COPY_AND_ASSIGN(GPUSupportImpl);
};