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. |