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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 void ExposeInterfacesToMediaService( | 285 void ExposeInterfacesToMediaService( |
286 service_manager::InterfaceRegistry* registry, | 286 service_manager::InterfaceRegistry* registry, |
287 content::RenderFrameHost* render_frame_host) override; | 287 content::RenderFrameHost* render_frame_host) override; |
288 void RegisterRenderFrameMojoInterfaces( | 288 void RegisterRenderFrameMojoInterfaces( |
289 service_manager::InterfaceRegistry* registry, | 289 service_manager::InterfaceRegistry* registry, |
290 content::RenderFrameHost* render_frame_host) override; | 290 content::RenderFrameHost* render_frame_host) override; |
291 void ExposeInterfacesToGpuProcess( | 291 void ExposeInterfacesToGpuProcess( |
292 service_manager::InterfaceRegistry* registry, | 292 service_manager::InterfaceRegistry* registry, |
293 content::GpuProcessHost* render_process_host) override; | 293 content::GpuProcessHost* render_process_host) override; |
294 void RegisterInProcessServices(StaticServiceMap* services) override; | 294 void RegisterInProcessServices(StaticServiceMap* services) override; |
| 295 void AddConnectionFilters( |
| 296 ConnectionFilterList* connection_filter_list) override; |
295 void RegisterOutOfProcessServices( | 297 void RegisterOutOfProcessServices( |
296 OutOfProcessServiceMap* services) override; | 298 OutOfProcessServiceMap* services) override; |
297 std::unique_ptr<base::Value> GetServiceManifestOverlay( | 299 std::unique_ptr<base::Value> GetServiceManifestOverlay( |
298 const std::string& name) override; | 300 const std::string& name) override; |
299 void OpenURL(content::BrowserContext* browser_context, | 301 void OpenURL(content::BrowserContext* browser_context, |
300 const content::OpenURLParams& params, | 302 const content::OpenURLParams& params, |
301 const base::Callback<void(content::WebContents*)>& callback) | 303 const base::Callback<void(content::WebContents*)>& callback) |
302 override; | 304 override; |
303 content::PresentationServiceDelegate* GetPresentationServiceDelegate( | 305 content::PresentationServiceDelegate* GetPresentationServiceDelegate( |
304 content::WebContents* web_contents) override; | 306 content::WebContents* web_contents) override; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 // Vector of additional ChromeContentBrowserClientParts. | 371 // Vector of additional ChromeContentBrowserClientParts. |
370 // Parts are deleted in the reverse order they are added. | 372 // Parts are deleted in the reverse order they are added. |
371 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 373 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
372 | 374 |
373 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 375 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
374 | 376 |
375 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 377 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
376 }; | 378 }; |
377 | 379 |
378 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 380 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |