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

Unified Diff: components/storage_monitor/image_capture_device_manager_unittest.mm

Issue 826213004: Update {virtual,override,final} for components/ to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: components/storage_monitor/image_capture_device_manager_unittest.mm
diff --git a/components/storage_monitor/image_capture_device_manager_unittest.mm b/components/storage_monitor/image_capture_device_manager_unittest.mm
index bd85af956fb281e60ce09f81661dc6aca4ee5180..7a0c588282cce28f3d943f05729e92cafff61adf 100644
--- a/components/storage_monitor/image_capture_device_manager_unittest.mm
+++ b/components/storage_monitor/image_capture_device_manager_unittest.mm
@@ -240,13 +240,9 @@ class TestCameraListener
class ImageCaptureDeviceManagerTest : public testing::Test {
public:
- virtual void SetUp() override {
- monitor_ = TestStorageMonitor::CreateAndInstall();
- }
+ void SetUp() override { monitor_ = TestStorageMonitor::CreateAndInstall(); }
- virtual void TearDown() override {
- TestStorageMonitor::Destroy();
- }
+ void TearDown() override { TestStorageMonitor::Destroy(); }
MockICCameraDevice* AttachDevice(ImageCaptureDeviceManager* manager) {
// Ownership will be passed to the device browser delegate.

Powered by Google App Engine
This is Rietveld 408576698