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

Unified Diff: chrome/browser/local_discovery/privetv3_setup_flow.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (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/local_discovery/privetv3_setup_flow.cc
diff --git a/chrome/browser/local_discovery/privetv3_setup_flow.cc b/chrome/browser/local_discovery/privetv3_setup_flow.cc
index 64142d77739d85c913b49ceb44c43d677a588c39..9f3554f4916ec39540fd9c18d6807d4d41402183 100644
--- a/chrome/browser/local_discovery/privetv3_setup_flow.cc
+++ b/chrome/browser/local_discovery/privetv3_setup_flow.cc
@@ -21,12 +21,12 @@ class SetupRequest : public PrivetV3Session::Request {
explicit SetupRequest(PrivetV3SetupFlow* setup_flow);
virtual ~SetupRequest();
- virtual std::string GetName() OVERRIDE { return "/privet/v3/setup/start"; }
- virtual const base::DictionaryValue& GetInput() OVERRIDE;
+ virtual std::string GetName() override { return "/privet/v3/setup/start"; }
+ virtual const base::DictionaryValue& GetInput() override;
- virtual void OnError(PrivetURLFetcher::ErrorType error) OVERRIDE;
+ virtual void OnError(PrivetURLFetcher::ErrorType error) override;
virtual void OnParsedJson(const base::DictionaryValue& value,
- bool has_error) OVERRIDE;
+ bool has_error) override;
void SetWiFiCridentials(const std::string& ssid, const std::string& password);
« no previous file with comments | « chrome/browser/local_discovery/privetv3_setup_flow.h ('k') | chrome/browser/local_discovery/privetv3_setup_flow_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698