Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 2916323004: Expose GetLoggingFileName in ContentBrowserClient. (Closed)
Patch Set: Expose GetLoggingFileName in ContentBrowserClient. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698