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

Unified Diff: chrome/browser/sync/test/integration/sessions_helper.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/sync/test/integration/sessions_helper.cc
diff --git a/chrome/browser/sync/test/integration/sessions_helper.cc b/chrome/browser/sync/test/integration/sessions_helper.cc
index cd25e2bfdd079740e4a7852ef7c921d54cd8db13..450c7722ffb7bb4b62a2b1795a2bb677ec469b37 100644
--- a/chrome/browser/sync/test/integration/sessions_helper.cc
+++ b/chrome/browser/sync/test/integration/sessions_helper.cc
@@ -137,7 +137,7 @@ class TabEventHandler : public browser_sync::LocalSessionEventHandler {
}
virtual void OnLocalTabModified(
- browser_sync::SyncedTabDelegate* modified_tab) OVERRIDE {
+ browser_sync::SyncedTabDelegate* modified_tab) override {
// Unwind to ensure SessionsSyncManager has processed the event.
base::MessageLoop::current()->PostTask(
FROM_HERE,
@@ -145,7 +145,7 @@ class TabEventHandler : public browser_sync::LocalSessionEventHandler {
}
virtual void OnFaviconPageUrlsUpdated(
- const std::set<GURL>& updated_page_urls) OVERRIDE {
+ const std::set<GURL>& updated_page_urls) override {
// Unwind to ensure SessionsSyncManager has processed the event.
base::MessageLoop::current()->PostTask(
FROM_HERE,
@@ -369,8 +369,8 @@ class CheckForeignSessionsChecker : public MultiClientStatusChangeChecker {
const std::vector<ScopedWindowMap>& windows);
virtual ~CheckForeignSessionsChecker();
- virtual bool IsExitConditionSatisfied() OVERRIDE;
- virtual std::string GetDebugMessage() const OVERRIDE;
+ virtual bool IsExitConditionSatisfied() override;
+ virtual std::string GetDebugMessage() const override;
private:
int index_;
const std::vector<ScopedWindowMap>& windows_;

Powered by Google App Engine
This is Rietveld 408576698