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

Unified Diff: chrome/browser/profiles/profile_destroyer_unittest.cc

Issue 23068005: Convert UserPolicySigninService to use OAuth2TokenService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android fixes. Created 7 years, 4 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/profiles/profile_destroyer_unittest.cc
diff --git a/chrome/browser/profiles/profile_destroyer_unittest.cc b/chrome/browser/profiles/profile_destroyer_unittest.cc
index 3c042894d6763486440e6ae9e83090e5f7923d36..5181fe3708abe25972fd56970813d3c9fd1ce215 100644
--- a/chrome/browser/profiles/profile_destroyer_unittest.cc
+++ b/chrome/browser/profiles/profile_destroyer_unittest.cc
@@ -11,7 +11,14 @@
class TestingOffTheRecordDestructionProfile : public TestingProfile {
public:
- TestingOffTheRecordDestructionProfile() : destroyed_otr_profile_(false) {
+ TestingOffTheRecordDestructionProfile()
+ : TestingProfile(base::FilePath(),
+ NULL,
+ scoped_refptr<ExtensionSpecialStoragePolicy>()
+ scoped_ptr<PrefServiceSyncable>().Pass,
awong 2013/08/16 17:53:16 erp? Does this compile? scoped_ptr<PrefServiceSyn
Andrew T Wilson (Slow) 2013/08/19 12:15:56 Fixed. Turns out that this file isn't actually com
+ true,
+ TestingFactories()),
+ destroyed_otr_profile_(false) {
set_incognito(true);
}
virtual void DestroyOffTheRecordProfile() OVERRIDE {

Powered by Google App Engine
This is Rietveld 408576698