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

Unified Diff: chrome/browser/extensions/extension_settings_storage_unittest.h

Issue 7775008: Enable sync for the settings from the Extension Settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Comments, GCC compile fix Created 9 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/extensions/extension_settings_storage_unittest.h
diff --git a/chrome/browser/extensions/extension_settings_storage_unittest.h b/chrome/browser/extensions/extension_settings_storage_unittest.h
index 1d5d66696ceedac22d761d5debb9809b79b91028..f564e41d565f6e172828a61d8d31aea502c6eb4c 100644
--- a/chrome/browser/extensions/extension_settings_storage_unittest.h
+++ b/chrome/browser/extensions/extension_settings_storage_unittest.h
@@ -29,6 +29,7 @@ class ExtensionSettingsStorageTest
virtual ~ExtensionSettingsStorageTest();
virtual void SetUp() OVERRIDE;
+ virtual void TearDown() OVERRIDE;
protected:
ExtensionSettingsStorage* storage_;
@@ -54,7 +55,7 @@ class ExtensionSettingsStorageTest
scoped_ptr<DictionaryValue> dict123_;
private:
- scoped_refptr<ExtensionSettings> settings_;
+ ExtensionSettings* settings_;
akalin 2011/09/20 14:53:11 No need for this to be a pointer anymore (just hav
not at google - send to devlin 2011/09/21 00:20:14 It's still easier for it to be a pointer, since th
akalin 2011/09/21 02:05:56 Ah, that makes sense. But surely it can be a scop
not at google - send to devlin 2011/09/21 03:55:18 Yeah it can be a scoped ptr. I had it this way bu
// Need these so that the DCHECKs for running on FILE or UI threads pass.
scoped_ptr<MessageLoopForUI> ui_message_loop_;

Powered by Google App Engine
This is Rietveld 408576698