OLD | NEW |
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 #include "content/public/browser/content_browser_client.h" | 5 #include "content/public/browser/content_browser_client.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "googleurl/src/gurl.h" | 8 #include "googleurl/src/gurl.h" |
9 #include "ui/gfx/image/image_skia.h" | 9 #include "ui/gfx/image/image_skia.h" |
10 | 10 |
11 namespace content { | 11 namespace content { |
12 | 12 |
13 BrowserMainParts* ContentBrowserClient::CreateBrowserMainParts( | 13 BrowserMainParts* ContentBrowserClient::CreateBrowserMainParts( |
14 const MainFunctionParams& parameters) { | 14 const MainFunctionParams& parameters) { |
15 return NULL; | 15 return NULL; |
16 } | 16 } |
17 | 17 |
18 WebContentsView* ContentBrowserClient::OverrideCreateWebContentsView( | 18 WebContentsView* ContentBrowserClient::OverrideCreateWebContentsView( |
19 WebContents* web_contents, | 19 WebContents* web_contents, |
20 RenderViewHostDelegateView** render_view_host_delegate_view) { | 20 RenderViewHostDelegateView** render_view_host_delegate_view) { |
21 return NULL; | 21 return NULL; |
22 } | 22 } |
23 | 23 |
24 WebContentsViewDelegate* ContentBrowserClient::GetWebContentsViewDelegate( | 24 WebContentsViewDelegate* ContentBrowserClient::GetWebContentsViewDelegate( |
25 WebContents* web_contents) { | 25 WebContents* web_contents) { |
26 return NULL; | 26 return NULL; |
27 } | 27 } |
28 | 28 |
| 29 WebUIControllerFactory* ContentBrowserClient::GetWebUIControllerFactory() { |
| 30 return NULL; |
| 31 } |
| 32 |
29 GURL ContentBrowserClient::GetEffectiveURL(BrowserContext* browser_context, | 33 GURL ContentBrowserClient::GetEffectiveURL(BrowserContext* browser_context, |
30 const GURL& url) { | 34 const GURL& url) { |
31 return url; | 35 return url; |
32 } | 36 } |
33 | 37 |
34 bool ContentBrowserClient::ShouldUseProcessPerSite( | 38 bool ContentBrowserClient::ShouldUseProcessPerSite( |
35 BrowserContext* browser_context, const GURL& effective_url) { | 39 BrowserContext* browser_context, const GURL& effective_url) { |
36 return false; | 40 return false; |
37 } | 41 } |
38 | 42 |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 #endif | 248 #endif |
245 | 249 |
246 #if defined(USE_NSS) | 250 #if defined(USE_NSS) |
247 crypto::CryptoModuleBlockingPasswordDelegate* | 251 crypto::CryptoModuleBlockingPasswordDelegate* |
248 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 252 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
249 return NULL; | 253 return NULL; |
250 } | 254 } |
251 #endif | 255 #endif |
252 | 256 |
253 } // namespace content | 257 } // namespace content |
OLD | NEW |