| 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 <stddef.h> |
| 6 |
| 5 #include <string> | 7 #include <string> |
| 6 | 8 |
| 7 #include "base/files/file.h" | 9 #include "base/files/file.h" |
| 8 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 9 #include "base/files/file_util.h" | 11 #include "base/files/file_util.h" |
| 10 #include "base/files/scoped_temp_dir.h" | 12 #include "base/files/scoped_temp_dir.h" |
| 11 #include "base/logging.h" | 13 #include "base/logging.h" |
| 12 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
| 13 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
| 14 #include "base/strings/string_split.h" | 16 #include "base/strings/string_split.h" |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 log->SetComplete(); | 283 log->SetComplete(); |
| 282 webrtc_log_uploader->LoggingStoppedDoUpload( | 284 webrtc_log_uploader->LoggingStoppedDoUpload( |
| 283 log.Pass(), make_scoped_ptr(new MetaDataMap()), upload_done_data); | 285 log.Pass(), make_scoped_ptr(new MetaDataMap()), upload_done_data); |
| 284 | 286 |
| 285 VerifyRtpDumpInMultipart(post_data, "rtpdump_recv", incoming_dump_content); | 287 VerifyRtpDumpInMultipart(post_data, "rtpdump_recv", incoming_dump_content); |
| 286 VerifyRtpDumpInMultipart(post_data, "rtpdump_send", outgoing_dump_content); | 288 VerifyRtpDumpInMultipart(post_data, "rtpdump_send", outgoing_dump_content); |
| 287 | 289 |
| 288 webrtc_log_uploader->StartShutdown(); | 290 webrtc_log_uploader->StartShutdown(); |
| 289 FlushIOThread(); | 291 FlushIOThread(); |
| 290 } | 292 } |
| OLD | NEW |