Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: content/shell/shell_content_browser_client.h

Issue 12386009: Remove the chrome:// protocol interceptor since it's not used anymore now that the chrome job facto… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/shell/shell_browser_context.cc ('k') | content/shell/shell_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 16 matching lines...) Expand all
27 virtual BrowserMainParts* CreateBrowserMainParts( 27 virtual BrowserMainParts* CreateBrowserMainParts(
28 const MainFunctionParams& parameters) OVERRIDE; 28 const MainFunctionParams& parameters) OVERRIDE;
29 virtual void RenderProcessHostCreated(RenderProcessHost* host) OVERRIDE; 29 virtual void RenderProcessHostCreated(RenderProcessHost* host) OVERRIDE;
30 virtual net::URLRequestContextGetter* CreateRequestContext( 30 virtual net::URLRequestContextGetter* CreateRequestContext(
31 BrowserContext* browser_context, 31 BrowserContext* browser_context,
32 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 32 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
33 blob_protocol_handler, 33 blob_protocol_handler,
34 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 34 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
35 file_system_protocol_handler, 35 file_system_protocol_handler,
36 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 36 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
37 developer_protocol_handler,
38 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
39 chrome_protocol_handler, 37 chrome_protocol_handler,
40 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 38 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
41 chrome_devtools_protocol_handler) OVERRIDE; 39 chrome_devtools_protocol_handler) OVERRIDE;
42 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( 40 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
43 BrowserContext* browser_context, 41 BrowserContext* browser_context,
44 const base::FilePath& partition_path, 42 const base::FilePath& partition_path,
45 bool in_memory, 43 bool in_memory,
46 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 44 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
47 blob_protocol_handler, 45 blob_protocol_handler,
48 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 46 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
49 file_system_protocol_handler, 47 file_system_protocol_handler,
50 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 48 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
51 developer_protocol_handler,
52 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
53 chrome_protocol_handler, 49 chrome_protocol_handler,
54 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> 50 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
55 chrome_devtools_protocol_handler) OVERRIDE; 51 chrome_devtools_protocol_handler) OVERRIDE;
56 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, 52 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line,
57 int child_process_id) OVERRIDE; 53 int child_process_id) OVERRIDE;
58 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host, 54 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host,
59 const GURL& url, 55 const GURL& url,
60 webkit_glue::WebPreferences* prefs) OVERRIDE; 56 webkit_glue::WebPreferences* prefs) OVERRIDE;
61 virtual void ResourceDispatcherHostCreated() OVERRIDE; 57 virtual void ResourceDispatcherHostCreated() OVERRIDE;
62 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; 58 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
(...skipping 25 matching lines...) Expand all
88 resource_dispatcher_host_delegate_; 84 resource_dispatcher_host_delegate_;
89 85
90 base::FilePath webkit_source_dir_; 86 base::FilePath webkit_source_dir_;
91 87
92 ShellBrowserMainParts* shell_browser_main_parts_; 88 ShellBrowserMainParts* shell_browser_main_parts_;
93 }; 89 };
94 90
95 } // namespace content 91 } // namespace content
96 92
97 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ 93 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/shell/shell_browser_context.cc ('k') | content/shell/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698