summaryrefslogtreecommitdiffstats
path: root/src/core/access_token_store_qt.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-04-12 11:58:21 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2017-04-21 11:10:13 +0000
commita5c1754faa7bd9491fcf64dda34b479cdf62c9bd (patch)
tree61a093917f9c8308d2153335d49c58acc3836981 /src/core/access_token_store_qt.h
parentd08524fbfbb78eca09bbab58d5a9840387d2d0e7 (diff)
Standardize override declaration
Update our overrides to Qt coding standard getting rid of Q_DECL_OVERRIDE and redundant virtual declarations. Change-Id: Id8b0750eb05c51fc8f50cac4000a811eebcbf918 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/core/access_token_store_qt.h')
-rw-r--r--src/core/access_token_store_qt.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/access_token_store_qt.h b/src/core/access_token_store_qt.h
index ced69a2b6..74fc0c898 100644
--- a/src/core/access_token_store_qt.h
+++ b/src/core/access_token_store_qt.h
@@ -43,7 +43,6 @@
#include "base/memory/ref_counted.h"
#include "device/geolocation/access_token_store.h"
-#include <QtCore/qcompilerdetection.h>
#include <QtCore/QFile>
#include <QtCore/QScopedPointer>
@@ -58,8 +57,8 @@ public:
AccessTokenStoreQt();
~AccessTokenStoreQt();
- virtual void LoadAccessTokens(const LoadAccessTokensCallback& request) Q_DECL_OVERRIDE;
- virtual void SaveAccessToken(const GURL& serverUrl, const base::string16& accessToken) Q_DECL_OVERRIDE;
+ void LoadAccessTokens(const LoadAccessTokensCallback& request) override;
+ void SaveAccessToken(const GURL& serverUrl, const base::string16& accessToken) override;
private:
void performWorkOnUIThread();