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

Side by Side Diff: ui/views_content_client/views_content_browser_client.h

Issue 282103004: Rename ProtocolInterceptJobFactory and make it not use ProtocolHandlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Response to jam's comments (And a merge) Created 6 years, 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_
6 #define UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_ 6 #define UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "content/public/browser/content_browser_client.h" 9 #include "content/public/browser/content_browser_client.h"
10 10
(...skipping 11 matching lines...) Expand all
22 explicit ViewsContentBrowserClient( 22 explicit ViewsContentBrowserClient(
23 ViewsContentClient* views_content_client); 23 ViewsContentClient* views_content_client);
24 virtual ~ViewsContentBrowserClient(); 24 virtual ~ViewsContentBrowserClient();
25 25
26 // content::ContentBrowserClient: 26 // content::ContentBrowserClient:
27 virtual content::BrowserMainParts* CreateBrowserMainParts( 27 virtual content::BrowserMainParts* CreateBrowserMainParts(
28 const content::MainFunctionParams& parameters) OVERRIDE; 28 const content::MainFunctionParams& parameters) OVERRIDE;
29 virtual net::URLRequestContextGetter* CreateRequestContext( 29 virtual net::URLRequestContextGetter* CreateRequestContext(
30 content::BrowserContext* browser_context, 30 content::BrowserContext* browser_context,
31 content::ProtocolHandlerMap* protocol_handlers, 31 content::ProtocolHandlerMap* protocol_handlers,
32 content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE; 32 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE;
33 33
34 private: 34 private:
35 ViewsContentClientMainParts* views_content_main_parts_; 35 ViewsContentClientMainParts* views_content_main_parts_;
36 ViewsContentClient* views_content_client_; 36 ViewsContentClient* views_content_client_;
37 37
38 DISALLOW_COPY_AND_ASSIGN(ViewsContentBrowserClient); 38 DISALLOW_COPY_AND_ASSIGN(ViewsContentBrowserClient);
39 }; 39 };
40 40
41 } // namespace ui 41 } // namespace ui
42 42
43 #endif // UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_ 43 #endif // UI_VIEWS_CONTENT_CLIENT_VIEWS_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « net/url_request/url_request_interceptor.cc ('k') | ui/views_content_client/views_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698