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

Side by Side Diff: chrome/browser/chromeos/file_system_provider/operations/unmount_unittest.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/file_system_provider/operations/unmount.h" 5 #include "chrome/browser/chromeos/file_system_provider/operations/unmount.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file.h" 10 #include "base/files/file.h"
(...skipping 15 matching lines...) Expand all
26 const char kFileSystemId[] = "testing-file-system"; 26 const char kFileSystemId[] = "testing-file-system";
27 const int kRequestId = 2; 27 const int kRequestId = 2;
28 28
29 } // namespace 29 } // namespace
30 30
31 class FileSystemProviderOperationsUnmountTest : public testing::Test { 31 class FileSystemProviderOperationsUnmountTest : public testing::Test {
32 protected: 32 protected:
33 FileSystemProviderOperationsUnmountTest() {} 33 FileSystemProviderOperationsUnmountTest() {}
34 virtual ~FileSystemProviderOperationsUnmountTest() {} 34 virtual ~FileSystemProviderOperationsUnmountTest() {}
35 35
36 virtual void SetUp() OVERRIDE { 36 virtual void SetUp() override {
37 file_system_info_ = 37 file_system_info_ =
38 ProvidedFileSystemInfo(kExtensionId, 38 ProvidedFileSystemInfo(kExtensionId,
39 kFileSystemId, 39 kFileSystemId,
40 "" /* display_name */, 40 "" /* display_name */,
41 false /* writable */, 41 false /* writable */,
42 base::FilePath() /* mount_path */); 42 base::FilePath() /* mount_path */);
43 } 43 }
44 44
45 ProvidedFileSystemInfo file_system_info_; 45 ProvidedFileSystemInfo file_system_info_;
46 }; 46 };
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 scoped_ptr<RequestValue>(new RequestValue()), 132 scoped_ptr<RequestValue>(new RequestValue()),
133 base::File::FILE_ERROR_NOT_FOUND); 133 base::File::FILE_ERROR_NOT_FOUND);
134 ASSERT_EQ(1u, callback_log.size()); 134 ASSERT_EQ(1u, callback_log.size());
135 base::File::Error event_result = callback_log[0]; 135 base::File::Error event_result = callback_log[0];
136 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); 136 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result);
137 } 137 }
138 138
139 } // namespace operations 139 } // namespace operations
140 } // namespace file_system_provider 140 } // namespace file_system_provider
141 } // namespace chromeos 141 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698