| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_INDEXED_DB_HELPER_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_INDEXED_DB_HELPER_H_ | 
| 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_INDEXED_DB_HELPER_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_INDEXED_DB_HELPER_H_ | 
| 7 | 7 | 
|  | 8 #include <stddef.h> | 
|  | 9 | 
| 8 #include <list> | 10 #include <list> | 
| 9 #include <set> | 11 #include <set> | 
| 10 | 12 | 
| 11 #include "base/callback.h" | 13 #include "base/callback.h" | 
|  | 14 #include "base/macros.h" | 
| 12 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" | 
| 13 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" | 
| 14 #include "content/public/browser/indexed_db_context.h" | 17 #include "content/public/browser/indexed_db_context.h" | 
| 15 #include "content/public/browser/indexed_db_info.h" | 18 #include "content/public/browser/indexed_db_info.h" | 
| 16 #include "url/gurl.h" | 19 #include "url/gurl.h" | 
| 17 | 20 | 
| 18 class Profile; | 21 class Profile; | 
| 19 | 22 | 
| 20 // BrowsingDataIndexedDBHelper is an interface for classes dealing with | 23 // BrowsingDataIndexedDBHelper is an interface for classes dealing with | 
| 21 // aggregating and deleting browsing data stored in indexed databases.  A | 24 // aggregating and deleting browsing data stored in indexed databases.  A | 
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 98 | 101 | 
| 99  private: | 102  private: | 
| 100   ~CannedBrowsingDataIndexedDBHelper() override; | 103   ~CannedBrowsingDataIndexedDBHelper() override; | 
| 101 | 104 | 
| 102   std::set<PendingIndexedDBInfo> pending_indexed_db_info_; | 105   std::set<PendingIndexedDBInfo> pending_indexed_db_info_; | 
| 103 | 106 | 
| 104   DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataIndexedDBHelper); | 107   DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataIndexedDBHelper); | 
| 105 }; | 108 }; | 
| 106 | 109 | 
| 107 #endif  // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_INDEXED_DB_HELPER_H_ | 110 #endif  // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_INDEXED_DB_HELPER_H_ | 
| OLD | NEW | 
|---|