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 int browser_plugin_instance_id, | |
71 const base::DictionaryValue& extra_params) OVERRIDE; | 70 const base::DictionaryValue& extra_params) OVERRIDE; |
72 virtual void RenderProcessHostCreated( | 71 virtual void RenderProcessHostCreated( |
73 content::RenderProcessHost* host) OVERRIDE; | 72 content::RenderProcessHost* host) OVERRIDE; |
74 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, | 73 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, |
75 const GURL& effective_url) OVERRIDE; | 74 const GURL& effective_url) OVERRIDE; |
76 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, | 75 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, |
77 const GURL& url) OVERRIDE; | 76 const GURL& url) OVERRIDE; |
78 virtual void GetAdditionalWebUISchemes( | 77 virtual void GetAdditionalWebUISchemes( |
79 std::vector<std::string>* additional_schemes) OVERRIDE; | 78 std::vector<std::string>* additional_schemes) OVERRIDE; |
80 virtual net::URLRequestContextGetter* CreateRequestContext( | 79 virtual net::URLRequestContextGetter* CreateRequestContext( |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 #endif | 271 #endif |
273 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 272 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
274 permissions_policy_delegate_; | 273 permissions_policy_delegate_; |
275 | 274 |
276 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 275 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
277 }; | 276 }; |
278 | 277 |
279 } // namespace chrome | 278 } // namespace chrome |
280 | 279 |
281 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 280 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |