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

Unified Diff: chrome/browser/extensions/test_extension_prefs.cc

Issue 220353002: Remove //chrome dependency from ExtensionPrefs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits, pull out ExtensionPrefsObserver Created 6 years, 9 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/test_extension_prefs.cc
diff --git a/chrome/browser/extensions/test_extension_prefs.cc b/chrome/browser/extensions/test_extension_prefs.cc
index 276980a3c30342e31fa476333ed06f159a8fce78..dbb453279d72864c4fab16dc9441828cde5273ff 100644
--- a/chrome/browser/extensions/test_extension_prefs.cc
+++ b/chrome/browser/extensions/test_extension_prefs.cc
@@ -117,10 +117,10 @@ void TestExtensionPrefs::RecreateExtensionPrefs() {
extension_pref_value_map_.get(),
ExtensionsBrowserClient::Get()->CreateAppSorting().Pass(),
extensions_disabled_,
+ std::vector<ExtensionPrefsObserver*>(),
// Guarantee that no two extensions get the same installation time
// stamp and we can reliably assert the installation order in the tests.
- scoped_ptr<ExtensionPrefs::TimeProvider>(
- new IncrementalTimeProvider())));
+ scoped_ptr<ExtensionPrefs::TimeProvider>(new IncrementalTimeProvider())));
}
scoped_refptr<Extension> TestExtensionPrefs::AddExtension(std::string name) {

Powered by Google App Engine
This is Rietveld 408576698