| Index: content/shell/shell_content_browser_client.cc
|
| ===================================================================
|
| --- content/shell/shell_content_browser_client.cc (revision 184663)
|
| +++ content/shell/shell_content_browser_client.cc (working copy)
|
| @@ -94,8 +94,6 @@
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| file_system_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| - developer_protocol_handler,
|
| - scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_devtools_protocol_handler) {
|
| @@ -103,8 +101,7 @@
|
| ShellBrowserContextForBrowserContext(content_browser_context);
|
| return shell_browser_context->CreateRequestContext(
|
| blob_protocol_handler.Pass(), file_system_protocol_handler.Pass(),
|
| - developer_protocol_handler.Pass(), chrome_protocol_handler.Pass(),
|
| - chrome_devtools_protocol_handler.Pass());
|
| + chrome_protocol_handler.Pass(), chrome_devtools_protocol_handler.Pass());
|
| }
|
|
|
| net::URLRequestContextGetter*
|
| @@ -117,8 +114,6 @@
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| file_system_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| - developer_protocol_handler,
|
| - scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_devtools_protocol_handler) {
|
| @@ -126,8 +121,7 @@
|
| ShellBrowserContextForBrowserContext(content_browser_context);
|
| return shell_browser_context->CreateRequestContextForStoragePartition(
|
| partition_path, in_memory, blob_protocol_handler.Pass(),
|
| - file_system_protocol_handler.Pass(),
|
| - developer_protocol_handler.Pass(), chrome_protocol_handler.Pass(),
|
| + file_system_protocol_handler.Pass(), chrome_protocol_handler.Pass(),
|
| chrome_devtools_protocol_handler.Pass());
|
| }
|
|
|
|
|