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

Side by Side Diff: chrome/browser/media/webrtc_log_uploader_unittest.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 | « chrome/browser/media/webrtc_log_uploader.cc ('k') | chrome/browser/media/webrtc_log_util.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 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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/media/webrtc_log_uploader.cc ('k') | chrome/browser/media/webrtc_log_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698