| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 310 |
| 311 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) | 311 #if BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 312 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host, | 312 void CreateMediaRemoter(content::RenderFrameHost* render_frame_host, |
| 313 media::mojom::RemotingSourcePtr source, | 313 media::mojom::RemotingSourcePtr source, |
| 314 media::mojom::RemoterRequest request) final; | 314 media::mojom::RemoterRequest request) final; |
| 315 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) | 315 #endif // BUILDFLAG(ENABLE_MEDIA_REMOTING) |
| 316 | 316 |
| 317 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams() | 317 std::unique_ptr<base::TaskScheduler::InitParams> GetTaskSchedulerInitParams() |
| 318 override; | 318 override; |
| 319 void PerformExperimentalTaskSchedulerRedirections() override; | 319 void PerformExperimentalTaskSchedulerRedirections() override; |
| 320 base::FilePath GetLoggingFileName() override; |
| 320 | 321 |
| 321 private: | 322 private: |
| 322 friend class DisableWebRtcEncryptionFlagTest; | 323 friend class DisableWebRtcEncryptionFlagTest; |
| 323 friend class InProcessBrowserTest; | 324 friend class InProcessBrowserTest; |
| 324 | 325 |
| 325 #if BUILDFLAG(ENABLE_WEBRTC) | 326 #if BUILDFLAG(ENABLE_WEBRTC) |
| 326 // Copies disable WebRTC encryption switch depending on the channel. | 327 // Copies disable WebRTC encryption switch depending on the channel. |
| 327 static void MaybeCopyDisableWebRtcEncryptionSwitch( | 328 static void MaybeCopyDisableWebRtcEncryptionSwitch( |
| 328 base::CommandLine* to_command_line, | 329 base::CommandLine* to_command_line, |
| 329 const base::CommandLine& from_command_line, | 330 const base::CommandLine& from_command_line, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 372 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 372 | 373 |
| 373 service_manager::BinderRegistry gpu_binder_registry_; | 374 service_manager::BinderRegistry gpu_binder_registry_; |
| 374 | 375 |
| 375 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 376 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 376 | 377 |
| 377 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 378 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 378 }; | 379 }; |
| 379 | 380 |
| 380 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 381 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |