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 | |
33 GURL ContentBrowserClient::GetEffectiveURL(BrowserContext* browser_context, | 29 GURL ContentBrowserClient::GetEffectiveURL(BrowserContext* browser_context, |
34 const GURL& url) { | 30 const GURL& url) { |
35 return url; | 31 return url; |
36 } | 32 } |
37 | 33 |
38 bool ContentBrowserClient::ShouldUseProcessPerSite( | 34 bool ContentBrowserClient::ShouldUseProcessPerSite( |
39 BrowserContext* browser_context, const GURL& effective_url) { | 35 BrowserContext* browser_context, const GURL& effective_url) { |
40 return false; | 36 return false; |
41 } | 37 } |
42 | 38 |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 #endif | 244 #endif |
249 | 245 |
250 #if defined(USE_NSS) | 246 #if defined(USE_NSS) |
251 crypto::CryptoModuleBlockingPasswordDelegate* | 247 crypto::CryptoModuleBlockingPasswordDelegate* |
252 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 248 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
253 return NULL; | 249 return NULL; |
254 } | 250 } |
255 #endif | 251 #endif |
256 | 252 |
257 } // namespace content | 253 } // namespace content |
OLD | NEW |