| Index: content/test/test_browser_context.cc | 
| =================================================================== | 
| --- content/test/test_browser_context.cc	(revision 122721) | 
| +++ content/test/test_browser_context.cc	(working copy) | 
| @@ -19,6 +19,10 @@ | 
| TestBrowserContext::~TestBrowserContext() { | 
| } | 
|  | 
| +FilePath TestBrowserContext::TakePath() { | 
| +  return browser_context_dir_.Take(); | 
| +} | 
| + | 
| FilePath TestBrowserContext::GetPath() { | 
| return browser_context_dir_.path(); | 
| } | 
| @@ -67,31 +71,6 @@ | 
| return true; | 
| } | 
|  | 
| -quota::QuotaManager* TestBrowserContext::GetQuotaManager() { | 
| +quota::SpecialStoragePolicy* TestBrowserContext::GetSpecialStoragePolicy() { | 
| return NULL; | 
| } | 
| - | 
| -WebKitContext* TestBrowserContext::GetWebKitContext() { | 
| -  if (webkit_context_ == NULL) { | 
| -    webkit_context_ = new WebKitContext( | 
| -          IsOffTheRecord(), GetPath(), | 
| -          NULL, false, NULL, NULL); | 
| -  } | 
| -  return webkit_context_; | 
| -} | 
| - | 
| -webkit_database::DatabaseTracker* TestBrowserContext::GetDatabaseTracker() { | 
| -  return NULL; | 
| -} | 
| - | 
| -ChromeBlobStorageContext* TestBrowserContext::GetBlobStorageContext() { | 
| -  return NULL; | 
| -} | 
| - | 
| -ChromeAppCacheService* TestBrowserContext::GetAppCacheService() { | 
| -  return NULL; | 
| -} | 
| - | 
| -fileapi::FileSystemContext* TestBrowserContext::GetFileSystemContext() { | 
| -  return NULL; | 
| -} | 
|  |