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

Unified Diff: chrome/browser/history/in_memory_url_index.cc

Issue 10071032: RefCounted types should not have public destructors, chrome/browser/ part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation fixes Created 8 years, 8 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
« no previous file with comments | « chrome/browser/history/in_memory_url_index.h ('k') | chrome/browser/history/shortcuts_backend.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/in_memory_url_index.cc
diff --git a/chrome/browser/history/in_memory_url_index.cc b/chrome/browser/history/in_memory_url_index.cc
index de928202feeece7ab7c696e397fd107dd7016cd5..cfd0463f367838b1fe0095cedbfd46cac93b918a 100644
--- a/chrome/browser/history/in_memory_url_index.cc
+++ b/chrome/browser/history/in_memory_url_index.cc
@@ -65,9 +65,6 @@ InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask::
succeeded_(false) {
}
-InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask::
- ~RebuildPrivateDataFromHistoryDBTask() {}
-
bool InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask::RunOnDBThread(
HistoryBackend* backend,
HistoryDatabase* db) {
@@ -84,6 +81,10 @@ void InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask::
index_->DoneRebuidingPrivateDataFromHistoryDB(succeeded_, data_);
}
+InMemoryURLIndex::RebuildPrivateDataFromHistoryDBTask::
+ ~RebuildPrivateDataFromHistoryDBTask() {
+}
+
// InMemoryURLIndex ------------------------------------------------------------
InMemoryURLIndex::InMemoryURLIndex(Profile* profile,
« no previous file with comments | « chrome/browser/history/in_memory_url_index.h ('k') | chrome/browser/history/shortcuts_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698