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

Unified Diff: chrome/test/testing_profile.h

Issue 6286131: Splits ChromeURLDataManager into 2 chunks:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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/test/testing_profile.h
===================================================================
--- chrome/test/testing_profile.h (revision 73990)
+++ chrome/test/testing_profile.h (working copy)
@@ -320,6 +320,7 @@
virtual ExtensionInfoMap* GetExtensionInfoMap() { return NULL; }
virtual PromoCounter* GetInstantPromoCounter() { return NULL; }
virtual policy::ProfilePolicyContext* GetPolicyContext() { return NULL; }
+ virtual ChromeURLDataManager* GetChromeURLDataManager();
virtual PrerenderManager* GetPrerenderManager() { return NULL; }
virtual PrefService* GetOffTheRecordPrefs() { return NULL; }
@@ -428,6 +429,8 @@
// We use a temporary directory to store testing profile data.
ScopedTempDir temp_dir_;
+
+ scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
};
// A profile that derives from another profile. This does not actually

Powered by Google App Engine
This is Rietveld 408576698