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

Unified Diff: chrome/browser/mock_browsing_data_cookie_helper.h

Issue 7355025: Creat BrowsingDataCookieHelper and CannedBrowsingDataCookieHelper for logging cookies at UI thread. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 4 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
« no previous file with comments | « chrome/browser/cookies_tree_model_unittest.cc ('k') | chrome/browser/mock_browsing_data_cookie_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/mock_browsing_data_cookie_helper.h
===================================================================
--- chrome/browser/mock_browsing_data_cookie_helper.h (revision 0)
+++ chrome/browser/mock_browsing_data_cookie_helper.h (revision 0)
@@ -0,0 +1,50 @@
+// Copyright (c) 2010 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.
+
+#ifndef CHROME_BROWSER_MOCK_BROWSING_DATA_COOKIE_HELPER_H_
+#define CHROME_BROWSER_MOCK_BROWSING_DATA_COOKIE_HELPER_H_
+#pragma once
+
+#include <map>
+#include <string>
+
+#include "chrome/browser/browsing_data_cookie_helper.h"
+
+// Mock for BrowsingDataCookieHelper.
+class MockBrowsingDataCookieHelper : public BrowsingDataCookieHelper {
+ public:
+ explicit MockBrowsingDataCookieHelper(Profile* profile);
+
+ // BrowsingDataCookieHelper methods.
+ virtual void StartFetching(
+ const net::CookieMonster::GetCookieListCallback &callback);
+ virtual void CancelNotification();
+ virtual void DeleteCookie(const net::CookieMonster::CanonicalCookie& cookie);
+
+ // Adds some cookie samples.
+ void AddCookieSamples(const GURL& url, const std::string& cookie_line);
+
+ // Notifies the callback.
+ void Notify();
+
+ // Marks all cookies as existing.
+ void Reset();
+
+ // Returns true if all cookies since the last Reset() invocation were
+ // deleted.
+ bool AllDeleted();
+
+ private:
+ virtual ~MockBrowsingDataCookieHelper();
+
+ Profile* profile_;
+ net::CookieMonster::GetCookieListCallback callback_;
+
+ net::CookieList cookie_list_;
+
+ // Stores which cookies exist.
+ std::map<const std::string, bool> cookies_;
+};
+
+#endif // CHROME_BROWSER_MOCK_BROWSING_DATA_COOKIE_HELPER_H_
Property changes on: chrome/browser/mock_browsing_data_cookie_helper.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/cookies_tree_model_unittest.cc ('k') | chrome/browser/mock_browsing_data_cookie_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698