 Chromium Code Reviews
 Chromium Code Reviews Issue 23068005:
  Convert UserPolicySigninService to use OAuth2TokenService  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 23068005:
  Convert UserPolicySigninService to use OAuth2TokenService  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| 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 { |