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

Side by Side Diff: chrome/browser/mock_browsing_data_quota_helper.h

Issue 7387007: Adding usage and quota entry to chrome://settings/cookies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed leak suppressions. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 #ifndef CHROME_BROWSER_MOCK_BROWSING_DATA_QUOTA_HELPER_H_
6 #define CHROME_BROWSER_MOCK_BROWSING_DATA_QUOTA_HELPER_H_
7 #pragma once
8
9 #include <string>
10 #include <vector>
11
12 #include "base/compiler_specific.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "chrome/browser/browsing_data_quota_helper.h"
15
16 class MockBrowsingDataQuotaHelper : public BrowsingDataQuotaHelper {
17 public:
18 explicit MockBrowsingDataQuotaHelper(Profile* profile);
19
20 virtual void StartFetching(FetchResultCallback* callback) OVERRIDE;
21 virtual void CancelNotification() OVERRIDE;
22
23 void AddHost(const std::string& host,
24 int64 temporary_usage,
25 int64 persistent_usage);
26 void AddQuotaSamples();
27 void Notify();
28
29 private:
30 virtual ~MockBrowsingDataQuotaHelper();
31
32 scoped_ptr<FetchResultCallback> callback_;
33 std::vector<QuotaInfo> response_;
34 Profile* profile_;
35 };
36
37 #endif // CHROME_BROWSER_MOCK_BROWSING_DATA_QUOTA_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/cookies_tree_model_unittest.cc ('k') | chrome/browser/mock_browsing_data_quota_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698