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

Side by Side Diff: media/cast/test/receiver.cc

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef 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 | « media/cast/test/loopback_transport.cc ('k') | media/cast/test/sender.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 #include <stdint.h>
7
5 #include <algorithm> 8 #include <algorithm>
6 #include <climits> 9 #include <climits>
7 #include <cstdarg> 10 #include <cstdarg>
8 #include <cstdio> 11 #include <cstdio>
9 #include <deque> 12 #include <deque>
10 #include <map> 13 #include <map>
11 #include <string> 14 #include <string>
12 #include <utility> 15 #include <utility>
13 16
14 #include "base/at_exit.h" 17 #include "base/at_exit.h"
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 audio_config, 596 audio_config,
594 video_config, 597 video_config,
595 window_width, 598 window_width,
596 window_height); 599 window_height);
597 player.Start(); 600 player.Start();
598 601
599 base::MessageLoop().Run(); // Run forever (i.e., until SIGTERM). 602 base::MessageLoop().Run(); // Run forever (i.e., until SIGTERM).
600 NOTREACHED(); 603 NOTREACHED();
601 return 0; 604 return 0;
602 } 605 }
OLDNEW
« no previous file with comments | « media/cast/test/loopback_transport.cc ('k') | media/cast/test/sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698