Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / browsing_data / mock_browsing_data_indexed_db_helper.h
blob745f75e0f6289f1308e5534548ff7b9f6bbfb488
1 // Copyright (c) 2012 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.
5 #ifndef CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_INDEXED_DB_HELPER_H_
6 #define CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_INDEXED_DB_HELPER_H_
8 #include <list>
9 #include <map>
11 #include "base/callback.h"
12 #include "base/compiler_specific.h"
13 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
15 class Profile;
17 // Mock for BrowsingDataIndexedDBHelper.
18 // Use AddIndexedDBSamples() or add directly to response_ list, then
19 // call Notify().
20 class MockBrowsingDataIndexedDBHelper
21 : public BrowsingDataIndexedDBHelper {
22 public:
23 explicit MockBrowsingDataIndexedDBHelper(Profile* profile);
25 // Adds some IndexedDBInfo samples.
26 void AddIndexedDBSamples();
28 // Notifies the callback.
29 void Notify();
31 // Marks all indexed db files as existing.
32 void Reset();
34 // Returns true if all indexed db files were deleted since the last
35 // Reset() invokation.
36 bool AllDeleted();
38 // BrowsingDataIndexedDBHelper.
39 virtual void StartFetching(
40 const base::Callback<void(const std::list<content::IndexedDBInfo>&)>&
41 callback) OVERRIDE;
42 virtual void DeleteIndexedDB(const GURL& origin) OVERRIDE;
44 private:
45 virtual ~MockBrowsingDataIndexedDBHelper();
47 base::Callback<void(const std::list<content::IndexedDBInfo>&)> callback_;
48 std::map<GURL, bool> origins_;
49 std::list<content::IndexedDBInfo> response_;
52 #endif // CHROME_BROWSER_BROWSING_DATA_MOCK_BROWSING_DATA_INDEXED_DB_HELPER_H_