| Index: chrome/test/testing_profile.cc | 
| diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc | 
| index cab23da9f53d779854510a576988a1c9bc4c7bc8..0d9cf1df7cf5197e09cd0cf0b7289406033c287e 100644 | 
| --- a/chrome/test/testing_profile.cc | 
| +++ b/chrome/test/testing_profile.cc | 
| @@ -47,6 +47,7 @@ | 
| #include "content/browser/browser_thread.h" | 
| #include "content/browser/geolocation/geolocation_permission_context.h" | 
| #include "content/browser/in_process_webkit/webkit_context.h" | 
| +#include "content/browser/mock_resource_context.h" | 
| #include "content/common/notification_service.h" | 
| #include "net/base/cookie_monster.h" | 
| #include "net/url_request/url_request_context.h" | 
| @@ -589,6 +590,10 @@ net::URLRequestContextGetter* TestingProfile::GetRequestContextForIsolatedApp( | 
| return GetRequestContext(); | 
| } | 
|  | 
| +const content::ResourceContext& TestingProfile::GetResourceContext() { | 
| +  return content::MockResourceContext::GetInstance(); | 
| +} | 
| + | 
| FindBarState* TestingProfile::GetFindBarState() { | 
| if (!find_bar_state_.get()) | 
| find_bar_state_.reset(new FindBarState()); | 
|  |