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

Unified Diff: chrome/browser/mock_browsing_data_file_system_helper.cc

Issue 6966036: Wrapping blocked filesystems into TabSpecificContentSettings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missed a string. Created 9 years, 7 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: chrome/browser/mock_browsing_data_file_system_helper.cc
diff --git a/chrome/browser/mock_browsing_data_file_system_helper.cc b/chrome/browser/mock_browsing_data_file_system_helper.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2fa8ecd58b91262df92607919e31e44740dee1cd
--- /dev/null
+++ b/chrome/browser/mock_browsing_data_file_system_helper.cc
@@ -0,0 +1,65 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/callback.h"
+#include "base/logging.h"
+#include "chrome/browser/mock_browsing_data_file_system_helper.h"
+
+MockBrowsingDataFileSystemHelper::MockBrowsingDataFileSystemHelper(
+ Profile* profile)
+ : profile_(profile) {
+}
+
+MockBrowsingDataFileSystemHelper::~MockBrowsingDataFileSystemHelper() {
+}
+
+void MockBrowsingDataFileSystemHelper::StartFetching(
+ Callback1<const std::vector<FileSystemInfo>& >::Type* callback) {
+ callback_.reset(callback);
+}
+
+void MockBrowsingDataFileSystemHelper::CancelNotification() {
+ callback_.reset(NULL);
+}
+
+void MockBrowsingDataFileSystemHelper::DeleteFileSystemOrigin(
+ const GURL& origin) {
+ std::string key = origin.spec();
+ CHECK(file_systems_.find(key) != file_systems_.end());
+ last_deleted_origin_ = origin;
+ file_systems_[key] = false;
+}
+
+void MockBrowsingDataFileSystemHelper::AddFileSystem(
+ const GURL& origin, bool has_persistent, bool has_temporary) {
+ response_.push_back(BrowsingDataFileSystemHelper::FileSystemInfo(
+ origin, has_persistent, has_temporary));
+ file_systems_[ origin.spec() ] = true;
jochen (gone - plz use gerrit) 2011/05/25 15:54:09 no spaces around origin.spec()
Mike West 2011/05/25 16:55:16 Done.
+}
+
+void MockBrowsingDataFileSystemHelper::AddFileSystemSamples() {
+ AddFileSystem(GURL("http://fshost1:1/"), false, true);
+ AddFileSystem(GURL("http://fshost2:2/"), true, false);
+ AddFileSystem(GURL("http://fshost3:3/"), true, true);
+}
+
+void MockBrowsingDataFileSystemHelper::Notify() {
+ CHECK(callback_.get());
+ callback_->Run(response_);
+}
+
+void MockBrowsingDataFileSystemHelper::Reset() {
+ for (std::map<const std::string, bool>::iterator i = file_systems_.begin();
+ i != file_systems_.end(); ++i)
+ i->second = true;
+}
+
+bool MockBrowsingDataFileSystemHelper::AllDeleted() {
+ for (std::map<const std::string, bool>::const_iterator i =
+ file_systems_.begin();
+ i != file_systems_.end(); ++i)
+ if (i->second)
jochen (gone - plz use gerrit) 2011/05/25 15:54:09 { } required if the body is > 1line
Mike West 2011/05/25 16:55:16 Done.
+ return false;
+ return true;
+}

Powered by Google App Engine
This is Rietveld 408576698