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

Unified Diff: Source/platform/UserGestureIndicator.cpp

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix 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
« no previous file with comments | « Source/platform/TracedValue.h ('k') | Source/platform/animation/AnimationValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/UserGestureIndicator.cpp
diff --git a/Source/platform/UserGestureIndicator.cpp b/Source/platform/UserGestureIndicator.cpp
index d6196708a10842c43ce96c062965176608fbf429..88fadffe0688b05466636441bf2d6b52849177db 100644
--- a/Source/platform/UserGestureIndicator.cpp
+++ b/Source/platform/UserGestureIndicator.cpp
@@ -45,7 +45,7 @@ public:
static PassRefPtr<UserGestureToken> create() { return adoptRef(new GestureToken); }
virtual ~GestureToken() { }
- virtual bool hasGestures() const OVERRIDE
+ virtual bool hasGestures() const override
{
// Do not enforce timeouts for gestures which spawned javascript prompts.
if (m_consumableGestures < 1 || (WTF::currentTime() - m_timestamp > (m_outOfProcess ? userGestureOutOfProcessTimeout : userGestureTimeout) && !m_javascriptPrompt))
@@ -72,7 +72,7 @@ public:
return true;
}
- virtual void setOutOfProcess() OVERRIDE
+ virtual void setOutOfProcess() override
{
if (WTF::currentTime() - m_timestamp > userGestureTimeout)
return;
@@ -80,7 +80,7 @@ public:
m_outOfProcess = true;
}
- virtual void setJavascriptPrompt() OVERRIDE
+ virtual void setJavascriptPrompt() override
{
if (WTF::currentTime() - m_timestamp > userGestureTimeout)
return;
« no previous file with comments | « Source/platform/TracedValue.h ('k') | Source/platform/animation/AnimationValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698