| 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 GetReceiverPresentationServiceDelegate( | 313 GetReceiverPresentationServiceDelegate( |
| 314 content::WebContents* web_contents) override; | 314 content::WebContents* web_contents) override; |
| 315 void RecordURLMetric(const std::string& metric, const GURL& url) override; | 315 void RecordURLMetric(const std::string& metric, const GURL& url) override; |
| 316 std::vector<std::unique_ptr<content::NavigationThrottle>> | 316 std::vector<std::unique_ptr<content::NavigationThrottle>> |
| 317 CreateThrottlesForNavigation(content::NavigationHandle* handle) override; | 317 CreateThrottlesForNavigation(content::NavigationHandle* handle) override; |
| 318 std::unique_ptr<content::NavigationUIData> GetNavigationUIData( | 318 std::unique_ptr<content::NavigationUIData> GetNavigationUIData( |
| 319 content::NavigationHandle* navigation_handle) override; | 319 content::NavigationHandle* navigation_handle) override; |
| 320 std::unique_ptr<content::MemoryCoordinatorDelegate> | 320 std::unique_ptr<content::MemoryCoordinatorDelegate> |
| 321 GetMemoryCoordinatorDelegate() override; | 321 GetMemoryCoordinatorDelegate() override; |
| 322 ::rappor::RapporService* GetRapporService() override; | 322 ::rappor::RapporService* GetRapporService() override; |
| 323 ::ukm::UkmService* GetUkmService() override; |
| 323 | 324 |
| 324 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) | 325 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 325 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host, | 326 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host, |
| 326 media::mojom::RemotingSourcePtr source, | 327 media::mojom::RemotingSourcePtr source, |
| 327 media::mojom::RemoterRequest request) final; | 328 media::mojom::RemoterRequest request) final; |
| 328 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) | 329 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 329 | 330 |
| 330 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams() | 331 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams() |
| 331 override; | 332 override; |
| 332 void PerformExperimentalTaskSchedulerRedirections() override; | 333 void PerformExperimentalTaskSchedulerRedirections() override; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 387 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 387 | 388 |
| 388 service_manager::BinderRegistry gpu_binder_registry_; | 389 service_manager::BinderRegistry gpu_binder_registry_; |
| 389 | 390 |
| 390 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 391 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 391 | 392 |
| 392 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 393 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 393 }; | 394 }; |
| 394 | 395 |
| 395 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 396 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |