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

Side by Side Diff: components/filesystem/files_test_base.cc

Issue 1231493002: mandoline filesystem: Save cookie data to the mojo:filesystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge with ToT Created 5 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/filesystem/files_test_base.h" 5 #include "components/filesystem/files_test_base.h"
6 6
7 #include "components/filesystem/public/interfaces/directory.mojom.h" 7 #include "components/filesystem/public/interfaces/directory.mojom.h"
8 #include "components/filesystem/public/interfaces/types.mojom.h" 8 #include "components/filesystem/public/interfaces/types.mojom.h"
9 #include "mojo/application/public/cpp/application_impl.h" 9 #include "mojo/application/public/cpp/application_impl.h"
10 #include "mojo/util/capture_util.h" 10 #include "mojo/util/capture_util.h"
11 11
12 namespace filesystem { 12 namespace filesystem {
13 13
14 FilesTestBase::FilesTestBase() { 14 FilesTestBase::FilesTestBase() : binding_(this) {
15 } 15 }
16 16
17 FilesTestBase::~FilesTestBase() { 17 FilesTestBase::~FilesTestBase() {
18 } 18 }
19 19
20 void FilesTestBase::SetUp() { 20 void FilesTestBase::SetUp() {
21 ApplicationTestBase::SetUp(); 21 ApplicationTestBase::SetUp();
22 22
23 mojo::URLRequestPtr request(mojo::URLRequest::New()); 23 mojo::URLRequestPtr request(mojo::URLRequest::New());
24 request->url = mojo::String::From("mojo:filesystem"); 24 request->url = mojo::String::From("mojo:filesystem");
25 application_impl()->ConnectToService(request.Pass(), &files_); 25 application_impl()->ConnectToService(request.Pass(), &files_);
26 } 26 }
27 27
28 void FilesTestBase::OnFileSystemShutdown() {
29 }
30
28 void FilesTestBase::GetTemporaryRoot(DirectoryPtr* directory) { 31 void FilesTestBase::GetTemporaryRoot(DirectoryPtr* directory) {
32 filesystem::FileSystemClientPtr client;
33 binding_.Bind(GetProxy(&client));
34
29 FileError error = FILE_ERROR_FAILED; 35 FileError error = FILE_ERROR_FAILED;
30 files()->OpenFileSystem("temp", GetProxy(directory), mojo::Capture(&error)); 36 files()->OpenFileSystem("temp", GetProxy(directory), client.Pass(),
37 mojo::Capture(&error));
31 ASSERT_TRUE(files().WaitForIncomingResponse()); 38 ASSERT_TRUE(files().WaitForIncomingResponse());
32 ASSERT_EQ(FILE_ERROR_OK, error); 39 ASSERT_EQ(FILE_ERROR_OK, error);
33 } 40 }
34 41
35 } // namespace filesystem 42 } // namespace filesystem
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698