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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 virtual void GuestWebContentsCreated( | 62 virtual void GuestWebContentsCreated( |
63 content::SiteInstance* guest_site_instance, | 63 content::SiteInstance* guest_site_instance, |
64 content::WebContents* guest_web_contents, | 64 content::WebContents* guest_web_contents, |
65 content::WebContents* opener_web_contents, | 65 content::WebContents* opener_web_contents, |
66 content::BrowserPluginGuestDelegate** guest_delegate, | 66 content::BrowserPluginGuestDelegate** guest_delegate, |
67 scoped_ptr<base::DictionaryValue> extra_params) OVERRIDE; | 67 scoped_ptr<base::DictionaryValue> extra_params) OVERRIDE; |
68 virtual void GuestWebContentsAttached( | 68 virtual void GuestWebContentsAttached( |
69 content::WebContents* guest_web_contents, | 69 content::WebContents* guest_web_contents, |
70 content::WebContents* embedder_web_contents, | 70 content::WebContents* embedder_web_contents, |
71 const base::DictionaryValue& extra_params) OVERRIDE; | 71 const base::DictionaryValue& extra_params) OVERRIDE; |
72 virtual void RenderProcessHostCreated( | 72 virtual void RenderProcessWillLaunch( |
73 content::RenderProcessHost* host) OVERRIDE; | 73 content::RenderProcessHost* host) OVERRIDE; |
74 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, | 74 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, |
75 const GURL& effective_url) OVERRIDE; | 75 const GURL& effective_url) OVERRIDE; |
76 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, | 76 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, |
77 const GURL& url) OVERRIDE; | 77 const GURL& url) OVERRIDE; |
78 virtual void GetAdditionalWebUISchemes( | 78 virtual void GetAdditionalWebUISchemes( |
79 std::vector<std::string>* additional_schemes) OVERRIDE; | 79 std::vector<std::string>* additional_schemes) OVERRIDE; |
80 virtual net::URLRequestContextGetter* CreateRequestContext( | 80 virtual net::URLRequestContextGetter* CreateRequestContext( |
81 content::BrowserContext* browser_context, | 81 content::BrowserContext* browser_context, |
82 content::ProtocolHandlerMap* protocol_handlers) OVERRIDE; | 82 content::ProtocolHandlerMap* protocol_handlers) OVERRIDE; |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 #endif | 278 #endif |
279 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 279 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
280 permissions_policy_delegate_; | 280 permissions_policy_delegate_; |
281 | 281 |
282 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 282 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
283 }; | 283 }; |
284 | 284 |
285 } // namespace chrome | 285 } // namespace chrome |
286 | 286 |
287 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 287 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |