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

Unified Diff: chrome/browser/browsing_data/browsing_data_local_storage_helper.h

Issue 546663003: Remove Clone() from CannedBrowsingData*Helper classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: chrome/browser/browsing_data/browsing_data_local_storage_helper.h
diff --git a/chrome/browser/browsing_data/browsing_data_local_storage_helper.h b/chrome/browser/browsing_data/browsing_data_local_storage_helper.h
index 95c491c71f641cfb4923bfd7fba0c1513e89e1a0..3c5c77f41a582193371691c9b77f5798c9b36392 100644
--- a/chrome/browser/browsing_data/browsing_data_local_storage_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_local_storage_helper.h
@@ -75,11 +75,6 @@ class CannedBrowsingDataLocalStorageHelper
public:
explicit CannedBrowsingDataLocalStorageHelper(Profile* profile);
- // Return a copy of the local storage helper. Only one consumer can use the
- // StartFetching method at a time, so we need to create a copy of the helper
- // every time we instantiate a cookies tree model for it.
- CannedBrowsingDataLocalStorageHelper* Clone();
-
// Add a local storage to the set of canned local storages that is returned
// by this helper.
void AddLocalStorage(const GURL& origin);
@@ -107,8 +102,6 @@ class CannedBrowsingDataLocalStorageHelper
std::set<GURL> pending_local_storage_info_;
- Profile* profile_;
-
DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataLocalStorageHelper);
};

Powered by Google App Engine
This is Rietveld 408576698