| 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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 virtual content::WebContentsViewDelegate* GetWebContentsViewDelegate( | 60 virtual content::WebContentsViewDelegate* GetWebContentsViewDelegate( |
| 61 content::WebContents* web_contents) OVERRIDE; | 61 content::WebContents* web_contents) OVERRIDE; |
| 62 virtual void GuestWebContentsCreated( | 62 virtual void GuestWebContentsCreated( |
| 63 content::WebContents* guest_web_contents, | 63 content::WebContents* guest_web_contents, |
| 64 content::WebContents* opener_web_contents, | 64 content::WebContents* opener_web_contents, |
| 65 content::BrowserPluginGuestDelegate** guest_delegate, | 65 content::BrowserPluginGuestDelegate** guest_delegate, |
| 66 scoped_ptr<base::DictionaryValue> extra_params) OVERRIDE; | 66 scoped_ptr<base::DictionaryValue> extra_params) OVERRIDE; |
| 67 virtual void GuestWebContentsAttached( | 67 virtual void GuestWebContentsAttached( |
| 68 content::WebContents* guest_web_contents, | 68 content::WebContents* guest_web_contents, |
| 69 content::WebContents* embedder_web_contents, | 69 content::WebContents* embedder_web_contents, |
| 70 const GURL& embedder_frame_url, |
| 70 const base::DictionaryValue& extra_params) OVERRIDE; | 71 const base::DictionaryValue& extra_params) OVERRIDE; |
| 71 virtual void RenderProcessHostCreated( | 72 virtual void RenderProcessHostCreated( |
| 72 content::RenderProcessHost* host) OVERRIDE; | 73 content::RenderProcessHost* host) OVERRIDE; |
| 73 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, | 74 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, |
| 74 const GURL& effective_url) OVERRIDE; | 75 const GURL& effective_url) OVERRIDE; |
| 75 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, | 76 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, |
| 76 const GURL& url) OVERRIDE; | 77 const GURL& url) OVERRIDE; |
| 77 virtual void GetAdditionalWebUISchemes( | 78 virtual void GetAdditionalWebUISchemes( |
| 78 std::vector<std::string>* additional_schemes) OVERRIDE; | 79 std::vector<std::string>* additional_schemes) OVERRIDE; |
| 79 virtual net::URLRequestContextGetter* CreateRequestContext( | 80 virtual net::URLRequestContextGetter* CreateRequestContext( |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 #endif | 275 #endif |
| 275 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 276 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
| 276 permissions_policy_delegate_; | 277 permissions_policy_delegate_; |
| 277 | 278 |
| 278 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 279 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 279 }; | 280 }; |
| 280 | 281 |
| 281 } // namespace chrome | 282 } // namespace chrome |
| 282 | 283 |
| 283 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 284 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |