Index: chrome/browser/ui/app_list/test/fake_profile.h |
diff --git a/chrome/browser/ui/app_list/test/fake_profile.h b/chrome/browser/ui/app_list/test/fake_profile.h |
index d979db0e3d5f87cd2d33a595c8be3aadfc7abc87..615ed6c215654d5950a02856ec2726b98f5210ce 100644 |
--- a/chrome/browser/ui/app_list/test/fake_profile.h |
+++ b/chrome/browser/ui/app_list/test/fake_profile.h |
@@ -88,11 +88,13 @@ class FakeProfile : public Profile { |
virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
virtual base::Time GetStartTime() const OVERRIDE; |
virtual net::URLRequestContextGetter* CreateRequestContext( |
- content::ProtocolHandlerMap* protocol_handlers) OVERRIDE; |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; |
sky
2014/03/07 17:35:41
Why aren't you passing a const& here? If receivers
sky
2014/03/07 17:37:12
Actually, if callers don't need to mutate than a c
mmenke
2014/03/07 17:53:51
This is just like passing a scoped_ptr, only to a
kinuko
2014/03/08 03:37:44
sky@: As Matt wrote I used scoped vector here to i
|
virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
const base::FilePath& partition_path, |
bool in_memory, |
- content::ProtocolHandlerMap* protocol_handlers) OVERRIDE; |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; |
virtual base::FilePath last_selected_directory() OVERRIDE; |
virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; |