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

Unified Diff: chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api_unittest.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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
Index: chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api_unittest.cc
diff --git a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api_unittest.cc b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api_unittest.cc
index bcced2b08fca692eb15c8757f9dcc88dc94b80ea..6a1e8d146d81c808915a658f58c590bffddee9bc 100644
--- a/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api_unittest.cc
+++ b/chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api_unittest.cc
@@ -33,7 +33,7 @@ class MockDeviceInfoTracker : public DeviceInfoTracker {
virtual ~MockDeviceInfoTracker() {}
virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
- const std::string& client_id) const OVERRIDE {
+ const std::string& client_id) const override {
NOTREACHED();
return scoped_ptr<DeviceInfo>();
}
@@ -47,7 +47,7 @@ class MockDeviceInfoTracker : public DeviceInfoTracker {
device_info->signin_scoped_device_id());
}
- virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const OVERRIDE {
+ virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const override {
ScopedVector<DeviceInfo> list;
for (std::vector<const DeviceInfo*>::const_iterator iter = devices_.begin();
@@ -59,9 +59,9 @@ class MockDeviceInfoTracker : public DeviceInfoTracker {
return list.Pass();
}
- virtual void AddObserver(Observer* observer) OVERRIDE { NOTREACHED(); }
+ virtual void AddObserver(Observer* observer) override { NOTREACHED(); }
- virtual void RemoveObserver(Observer* observer) OVERRIDE { NOTREACHED(); }
+ virtual void RemoveObserver(Observer* observer) override { NOTREACHED(); }
void Add(const DeviceInfo* device) { devices_.push_back(device); }

Powered by Google App Engine
This is Rietveld 408576698