Chromium Code Reviews| Index: content/browser/webui/url_data_manager_backend.h |
| diff --git a/content/browser/webui/url_data_manager_backend.h b/content/browser/webui/url_data_manager_backend.h |
| index a6c6fa23176cd6e232fd5dbf99b5c3684339cff9..7abb7696ccfcd0107afcd1a073e21a8241e3b80c 100644 |
| --- a/content/browser/webui/url_data_manager_backend.h |
| +++ b/content/browser/webui/url_data_manager_backend.h |
| @@ -22,6 +22,7 @@ class RefCountedMemory; |
| } |
| namespace content { |
| +class ResourceContext; |
| class URLDataManagerBackend; |
| class URLDataSourceImpl; |
| class URLRequestChromeJob; |
| @@ -39,7 +40,7 @@ class URLDataManagerBackend : public base::SupportsUserData::Data { |
| // Invoked to create the protocol handler for chrome://. |is_incognito| should |
| // be set for incognito profiles. |
| static net::URLRequestJobFactory::ProtocolHandler* CreateProtocolHandler( |
| - URLDataManagerBackend* backend, |
| + content::ResourceContext* resource_context, |
|
awong
2013/02/02 03:26:12
Where is this change coming from?
pauljensen
2013/02/04 14:18:54
Creation now takes place on the UI thread instead
|
| bool is_incognito); |
| // Adds a DataSource to the collection of data sources. |
| @@ -95,7 +96,7 @@ class URLDataManagerBackend : public base::SupportsUserData::Data { |
| // Creates protocol handler for chrome-devtools://. |is_incognito| should be |
| // set for incognito profiles. |
| net::URLRequestJobFactory::ProtocolHandler* |
| -CreateDevToolsProtocolHandler(URLDataManagerBackend* backend, |
| +CreateDevToolsProtocolHandler(content::ResourceContext* resource_context, |
| bool is_incognito); |
| } // namespace content |