OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/media/webrtc_logging_handler_host.h" | 5 #include "chrome/browser/media/webrtc_logging_handler_host.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/cpu.h" | 11 #include "base/cpu.h" |
12 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/prefs/pref_service.h" | 14 #include "base/prefs/pref_service.h" |
15 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
16 #include "base/sys_info.h" | 16 #include "base/sys_info.h" |
17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
18 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
19 #include "chrome/browser/chromeos/settings/cros_settings.h" | 19 #include "chrome/browser/chromeos/settings/cros_settings.h" |
20 #include "chrome/browser/media/webrtc_log_list.h" | 20 #include "chrome/browser/media/webrtc_log_list.h" |
21 #include "chrome/browser/media/webrtc_log_uploader.h" | 21 #include "chrome/browser/media/webrtc_log_uploader.h" |
22 #include "chrome/browser/media/webrtc_rtp_dump_handler.h" | 22 #include "chrome/browser/media/webrtc_rtp_dump_handler.h" |
23 #include "chrome/browser/profiles/profile.h" | 23 #include "chrome/browser/profiles/profile.h" |
24 #include "chrome/common/chrome_switches.h" | 24 #include "chrome/common/chrome_switches.h" |
25 #include "chrome/common/chrome_version_info.h" | 25 #include "chrome/common/chrome_version_info.h" |
26 #include "chrome/common/media/webrtc_logging_messages.h" | 26 #include "chrome/common/media/webrtc_logging_messages.h" |
27 #include "chrome/common/partial_circular_buffer.h" | 27 #include "chrome/common/partial_circular_buffer.h" |
28 #include "chrome/common/pref_names.h" | |
29 #include "chromeos/settings/cros_settings_names.h" | 28 #include "chromeos/settings/cros_settings_names.h" |
30 #include "content/public/browser/browser_thread.h" | 29 #include "content/public/browser/browser_thread.h" |
31 #include "content/public/browser/content_browser_client.h" | 30 #include "content/public/browser/content_browser_client.h" |
32 #include "content/public/browser/gpu_data_manager.h" | 31 #include "content/public/browser/gpu_data_manager.h" |
33 #include "content/public/browser/render_process_host.h" | 32 #include "content/public/browser/render_process_host.h" |
34 #include "gpu/config/gpu_info.h" | 33 #include "gpu/config/gpu_info.h" |
35 #include "net/base/address_family.h" | 34 #include "net/base/address_family.h" |
36 #include "net/url_request/url_request_context_getter.h" | 35 #include "net/url_request/url_request_context_getter.h" |
37 | 36 |
38 #if defined(OS_LINUX) | 37 #if defined(OS_LINUX) |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 void WebRtcLoggingHandlerHost::DoStartRtpDump(RtpDumpType type, | 614 void WebRtcLoggingHandlerHost::DoStartRtpDump(RtpDumpType type, |
616 GenericDoneCallback* callback) { | 615 GenericDoneCallback* callback) { |
617 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 616 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
618 DCHECK(rtp_dump_handler_); | 617 DCHECK(rtp_dump_handler_); |
619 | 618 |
620 std::string error; | 619 std::string error; |
621 | 620 |
622 bool result = rtp_dump_handler_->StartDump(type, &error); | 621 bool result = rtp_dump_handler_->StartDump(type, &error); |
623 FireGenericDoneCallback(callback, result, error); | 622 FireGenericDoneCallback(callback, result, error); |
624 } | 623 } |
OLD | NEW |