| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 const GURL& opener_top_level_frame_url, | 207 const GURL& opener_top_level_frame_url, |
| 208 const GURL& source_origin, | 208 const GURL& source_origin, |
| 209 content::mojom::WindowContainerType container_type, | 209 content::mojom::WindowContainerType container_type, |
| 210 const GURL& target_url, | 210 const GURL& target_url, |
| 211 const content::Referrer& referrer, | 211 const content::Referrer& referrer, |
| 212 const std::string& frame_name, | 212 const std::string& frame_name, |
| 213 WindowOpenDisposition disposition, | 213 WindowOpenDisposition disposition, |
| 214 const blink::mojom::WindowFeatures& features, | 214 const blink::mojom::WindowFeatures& features, |
| 215 bool user_gesture, | 215 bool user_gesture, |
| 216 bool opener_suppressed, | 216 bool opener_suppressed, |
| 217 content::ResourceContext* context, | |
| 218 bool* no_javascript_access) override; | 217 bool* no_javascript_access) override; |
| 219 void ResourceDispatcherHostCreated() override; | 218 void ResourceDispatcherHostCreated() override; |
| 220 content::SpeechRecognitionManagerDelegate* | 219 content::SpeechRecognitionManagerDelegate* |
| 221 CreateSpeechRecognitionManagerDelegate() override; | 220 CreateSpeechRecognitionManagerDelegate() override; |
| 222 net::NetLog* GetNetLog() override; | 221 net::NetLog* GetNetLog() override; |
| 223 void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 222 void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 224 content::WebPreferences* prefs) override; | 223 content::WebPreferences* prefs) override; |
| 225 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; | 224 void BrowserURLHandlerCreated(content::BrowserURLHandler* handler) override; |
| 226 void ClearCache(content::RenderFrameHost* rfh) override; | 225 void ClearCache(content::RenderFrameHost* rfh) override; |
| 227 void ClearSiteData(content::BrowserContext* browser_context, | 226 void ClearSiteData(content::BrowserContext* browser_context, |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 385 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 387 | 386 |
| 388 service_manager::BinderRegistry gpu_binder_registry_; | 387 service_manager::BinderRegistry gpu_binder_registry_; |
| 389 | 388 |
| 390 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 389 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 391 | 390 |
| 392 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 391 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 393 }; | 392 }; |
| 394 | 393 |
| 395 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 394 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |