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

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

Issue 624903002: [fsp] Group arguments for mounting into a struct. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a bug. 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 16 matching lines...) Expand all
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_ = ProvidedFileSystemInfo(
38 ProvidedFileSystemInfo(kExtensionId, 38 kExtensionId,
39 kFileSystemId, 39 MountOptions(kFileSystemId, "" /* display_name */),
40 "" /* display_name */, 40 base::FilePath());
41 false /* writable */,
42 false /* supports_notify_tag */,
43 base::FilePath() /* mount_path */);
44 } 41 }
45 42
46 ProvidedFileSystemInfo file_system_info_; 43 ProvidedFileSystemInfo file_system_info_;
47 }; 44 };
48 45
49 TEST_F(FileSystemProviderOperationsUnmountTest, Execute) { 46 TEST_F(FileSystemProviderOperationsUnmountTest, Execute) {
50 using extensions::api::file_system_provider::UnmountRequestedOptions; 47 using extensions::api::file_system_provider::UnmountRequestedOptions;
51 48
52 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); 49 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */);
53 util::StatusCallbackLog callback_log; 50 util::StatusCallbackLog callback_log;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 scoped_ptr<RequestValue>(new RequestValue()), 130 scoped_ptr<RequestValue>(new RequestValue()),
134 base::File::FILE_ERROR_NOT_FOUND); 131 base::File::FILE_ERROR_NOT_FOUND);
135 ASSERT_EQ(1u, callback_log.size()); 132 ASSERT_EQ(1u, callback_log.size());
136 base::File::Error event_result = callback_log[0]; 133 base::File::Error event_result = callback_log[0];
137 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); 134 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result);
138 } 135 }
139 136
140 } // namespace operations 137 } // namespace operations
141 } // namespace file_system_provider 138 } // namespace file_system_provider
142 } // namespace chromeos 139 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698