| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/callback.h" |
| 6 #include "base/logging.h" |
| 7 #include "chrome/browser/mock_browsing_data_file_system_helper.h" |
| 8 |
| 9 MockBrowsingDataFileSystemHelper::MockBrowsingDataFileSystemHelper( |
| 10 Profile* profile) |
| 11 : profile_(profile) { |
| 12 } |
| 13 |
| 14 MockBrowsingDataFileSystemHelper::~MockBrowsingDataFileSystemHelper() { |
| 15 } |
| 16 |
| 17 void MockBrowsingDataFileSystemHelper::StartFetching( |
| 18 Callback1<const std::vector<FileSystemInfo>& >::Type* callback) { |
| 19 callback_.reset(callback); |
| 20 } |
| 21 |
| 22 void MockBrowsingDataFileSystemHelper::CancelNotification() { |
| 23 callback_.reset(NULL); |
| 24 } |
| 25 |
| 26 void MockBrowsingDataFileSystemHelper::DeleteFileSystemOrigin( |
| 27 const GURL& origin) { |
| 28 std::string key = origin.spec(); |
| 29 CHECK(file_systems_.find(key) != file_systems_.end()); |
| 30 last_deleted_origin_ = origin; |
| 31 file_systems_[key] = false; |
| 32 } |
| 33 |
| 34 void MockBrowsingDataFileSystemHelper::AddFileSystem( |
| 35 const GURL& origin, bool has_persistent, bool has_temporary) { |
| 36 response_.push_back(BrowsingDataFileSystemHelper::FileSystemInfo( |
| 37 origin, has_persistent, has_temporary, 0, 0)); |
| 38 file_systems_[origin.spec()] = true; |
| 39 } |
| 40 |
| 41 void MockBrowsingDataFileSystemHelper::AddFileSystemSamples() { |
| 42 AddFileSystem(GURL("http://fshost1:1/"), false, true); |
| 43 AddFileSystem(GURL("http://fshost2:2/"), true, false); |
| 44 AddFileSystem(GURL("http://fshost3:3/"), true, true); |
| 45 } |
| 46 |
| 47 void MockBrowsingDataFileSystemHelper::Notify() { |
| 48 CHECK(callback_.get()); |
| 49 callback_->Run(response_); |
| 50 } |
| 51 |
| 52 void MockBrowsingDataFileSystemHelper::Reset() { |
| 53 for (std::map<const std::string, bool>::iterator i = file_systems_.begin(); |
| 54 i != file_systems_.end(); ++i) |
| 55 i->second = true; |
| 56 } |
| 57 |
| 58 bool MockBrowsingDataFileSystemHelper::AllDeleted() { |
| 59 for (std::map<const std::string, bool>::const_iterator i = |
| 60 file_systems_.begin(); |
| 61 i != file_systems_.end(); ++i) { |
| 62 if (i->second) |
| 63 return false; |
| 64 } |
| 65 return true; |
| 66 } |
| OLD | NEW |