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

Unified Diff: chrome/browser/sync/glue/history_model_worker.h

Issue 10071033: RefCounted types should not have public destructors, chrome/browser/ part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering fixes as well 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
Index: chrome/browser/sync/glue/history_model_worker.h
diff --git a/chrome/browser/sync/glue/history_model_worker.h b/chrome/browser/sync/glue/history_model_worker.h
index f4784c3f6840c5642ecc8293097cde4ba181e9a2..4aba1cc7325b4e0379791f56e9389bfeaa4c2723 100644
--- a/chrome/browser/sync/glue/history_model_worker.h
+++ b/chrome/browser/sync/glue/history_model_worker.h
@@ -23,7 +23,6 @@ namespace browser_sync {
class HistoryModelWorker : public browser_sync::ModelSafeWorker {
public:
explicit HistoryModelWorker(HistoryService* history_service);
- virtual ~HistoryModelWorker();
// ModelSafeWorker implementation. Called on syncapi SyncerThread.
virtual SyncerError DoWorkAndWaitUntilDone(
@@ -31,6 +30,8 @@ class HistoryModelWorker : public browser_sync::ModelSafeWorker {
virtual ModelSafeGroup GetModelSafeGroup() OVERRIDE;
private:
+ virtual ~HistoryModelWorker();
+
scoped_refptr<HistoryService> history_service_;
// Helper object to make sure we don't leave tasks running on the history
// thread.
« no previous file with comments | « chrome/browser/sync/glue/frontend_data_type_controller_unittest.cc ('k') | chrome/browser/sync/glue/history_model_worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698