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

Side by Side Diff: media/blink/run_all_unittests.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 5 years 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/blink/resource_multibuffer_data_provider_unittest.cc ('k') | media/blink/test_random.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/bind.h" 7 #include "base/bind.h"
6 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
7 #include "base/rand_util.h" 9 #include "base/rand_util.h"
8 #include "base/test/launcher/unit_test_launcher.h" 10 #include "base/test/launcher/unit_test_launcher.h"
9 #include "base/test/test_suite.h" 11 #include "base/test/test_suite.h"
10 #include "build/build_config.h" 12 #include "build/build_config.h"
11 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h" 13 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h"
12 #include "components/scheduler/child/web_task_runner_impl.h" 14 #include "components/scheduler/child/web_task_runner_impl.h"
13 #include "components/scheduler/renderer/renderer_scheduler_impl.h" 15 #include "components/scheduler/renderer/renderer_scheduler_impl.h"
14 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h" 16 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h"
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 blink::initialize(blink_platform_support_.get()); 143 blink::initialize(blink_platform_support_.get());
142 } 144 }
143 145
144 int main(int argc, char** argv) { 146 int main(int argc, char** argv) {
145 BlinkMediaTestSuite test_suite(argc, argv); 147 BlinkMediaTestSuite test_suite(argc, argv);
146 148
147 return base::LaunchUnitTests( 149 return base::LaunchUnitTests(
148 argc, argv, base::Bind(&BlinkMediaTestSuite::Run, 150 argc, argv, base::Bind(&BlinkMediaTestSuite::Run,
149 base::Unretained(&test_suite))); 151 base::Unretained(&test_suite)));
150 } 152 }
OLDNEW
« no previous file with comments | « media/blink/resource_multibuffer_data_provider_unittest.cc ('k') | media/blink/test_random.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698