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

Unified Diff: chromeos/dbus/fake_shill_profile_client.h

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « chromeos/dbus/fake_shill_manager_client.h ('k') | chromeos/dbus/fake_shill_service_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_shill_profile_client.h
diff --git a/chromeos/dbus/fake_shill_profile_client.h b/chromeos/dbus/fake_shill_profile_client.h
index 65c8417105cc75701f0803cfa2519d0911fd651c..904fa3f1f87149bf7148b149c5bd0356fd98ad7f 100644
--- a/chromeos/dbus/fake_shill_profile_client.h
+++ b/chromeos/dbus/fake_shill_profile_client.h
@@ -24,42 +24,42 @@ class CHROMEOS_EXPORT FakeShillProfileClient :
virtual ~FakeShillProfileClient();
// ShillProfileClient overrides
- virtual void Init(dbus::Bus* bus) OVERRIDE;
+ virtual void Init(dbus::Bus* bus) override;
virtual void AddPropertyChangedObserver(
const dbus::ObjectPath& profile_path,
- ShillPropertyChangedObserver* observer) OVERRIDE;
+ ShillPropertyChangedObserver* observer) override;
virtual void RemovePropertyChangedObserver(
const dbus::ObjectPath& profile_path,
- ShillPropertyChangedObserver* observer) OVERRIDE;
+ ShillPropertyChangedObserver* observer) override;
virtual void GetProperties(
const dbus::ObjectPath& profile_path,
const DictionaryValueCallbackWithoutStatus& callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
virtual void GetEntry(const dbus::ObjectPath& profile_path,
const std::string& entry_path,
const DictionaryValueCallbackWithoutStatus& callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
virtual void DeleteEntry(const dbus::ObjectPath& profile_path,
const std::string& entry_path,
const base::Closure& callback,
- const ErrorCallback& error_callback) OVERRIDE;
- virtual ShillProfileClient::TestInterface* GetTestInterface() OVERRIDE;
+ const ErrorCallback& error_callback) override;
+ virtual ShillProfileClient::TestInterface* GetTestInterface() override;
// ShillProfileClient::TestInterface overrides.
virtual void AddProfile(const std::string& profile_path,
- const std::string& userhash) OVERRIDE;
+ const std::string& userhash) override;
virtual void AddEntry(const std::string& profile_path,
const std::string& entry_path,
- const base::DictionaryValue& properties) OVERRIDE;
+ const base::DictionaryValue& properties) override;
virtual bool AddService(const std::string& profile_path,
- const std::string& service_path) OVERRIDE;
+ const std::string& service_path) override;
virtual bool UpdateService(const std::string& profile_path,
- const std::string& service_path) OVERRIDE;
- virtual void GetProfilePaths(std::vector<std::string>* profiles) OVERRIDE;
+ const std::string& service_path) override;
+ virtual void GetProfilePaths(std::vector<std::string>* profiles) override;
virtual bool GetService(const std::string& service_path,
std::string* profile_path,
- base::DictionaryValue* properties) OVERRIDE;
- virtual void ClearProfiles() OVERRIDE;
+ base::DictionaryValue* properties) override;
+ virtual void ClearProfiles() override;
private:
struct ProfileProperties;
« no previous file with comments | « chromeos/dbus/fake_shill_manager_client.h ('k') | chromeos/dbus/fake_shill_service_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698