| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 GetReceiverPresentationServiceDelegate( | 306 GetReceiverPresentationServiceDelegate( |
| 307 content::WebContents* web_contents) override; | 307 content::WebContents* web_contents) override; |
| 308 void RecordURLMetric(const std::string& metric, const GURL& url) override; | 308 void RecordURLMetric(const std::string& metric, const GURL& url) override; |
| 309 std::vector<std::unique_ptr<content::NavigationThrottle>> | 309 std::vector<std::unique_ptr<content::NavigationThrottle>> |
| 310 CreateThrottlesForNavigation(content::NavigationHandle* handle) override; | 310 CreateThrottlesForNavigation(content::NavigationHandle* handle) override; |
| 311 std::unique_ptr<content::NavigationUIData> GetNavigationUIData( | 311 std::unique_ptr<content::NavigationUIData> GetNavigationUIData( |
| 312 content::NavigationHandle* navigation_handle) override; | 312 content::NavigationHandle* navigation_handle) override; |
| 313 std::unique_ptr<content::MemoryCoordinatorDelegate> | 313 std::unique_ptr<content::MemoryCoordinatorDelegate> |
| 314 GetMemoryCoordinatorDelegate() override; | 314 GetMemoryCoordinatorDelegate() override; |
| 315 ::rappor::RapporService* GetRapporService() override; | 315 ::rappor::RapporService* GetRapporService() override; |
| 316 ::ukm::UkmRecorder* GetUkmRecorder() override; | |
| 317 | 316 |
| 318 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) | 317 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 319 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host, | 318 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host, |
| 320 media::mojom::RemotingSourcePtr source, | 319 media::mojom::RemotingSourcePtr source, |
| 321 media::mojom::RemoterRequest request) final; | 320 media::mojom::RemoterRequest request) final; |
| 322 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) | 321 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 323 | 322 |
| 324 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams() | 323 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams() |
| 325 override; | 324 override; |
| 326 void PerformExperimentalTaskSchedulerRedirections() override; | 325 void PerformExperimentalTaskSchedulerRedirections() override; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 379 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 381 | 380 |
| 382 service_manager::BinderRegistry gpu_binder_registry_; | 381 service_manager::BinderRegistry gpu_binder_registry_; |
| 383 | 382 |
| 384 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 383 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 385 | 384 |
| 386 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 385 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 387 }; | 386 }; |
| 388 | 387 |
| 389 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 388 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |