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 #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_ |
OLD | NEW |