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

Side by Side Diff: media/blink/run_all_unittests.cc

Issue 1915443003: Replace scoped_ptr with std::unique_ptr in //media. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptr-media-base
Patch Set: scopedptr-media: rebase Created 4 years, 7 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 | « no previous file | media/cdm/aes_decryptor.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> 5 #include <stddef.h>
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
10 #include "base/rand_util.h" 9 #include "base/rand_util.h"
11 #include "base/test/launcher/unit_test_launcher.h" 10 #include "base/test/launcher/unit_test_launcher.h"
12 #include "base/test/test_suite.h" 11 #include "base/test/test_suite.h"
13 #include "build/build_config.h" 12 #include "build/build_config.h"
14 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h" 13 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h"
15 #include "components/scheduler/child/web_task_runner_impl.h" 14 #include "components/scheduler/child/web_task_runner_impl.h"
16 #include "components/scheduler/renderer/renderer_scheduler_impl.h" 15 #include "components/scheduler/renderer/renderer_scheduler_impl.h"
17 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h" 16 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h"
18 #include "components/scheduler/test/lazy_scheduler_message_loop_delegate_for_tes ts.h" 17 #include "components/scheduler/test/lazy_scheduler_message_loop_delegate_for_tes ts.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 blink::initialize(blink_platform_support_.get()); 132 blink::initialize(blink_platform_support_.get());
134 } 133 }
135 134
136 int main(int argc, char** argv) { 135 int main(int argc, char** argv) {
137 BlinkMediaTestSuite test_suite(argc, argv); 136 BlinkMediaTestSuite test_suite(argc, argv);
138 137
139 return base::LaunchUnitTests( 138 return base::LaunchUnitTests(
140 argc, argv, base::Bind(&BlinkMediaTestSuite::Run, 139 argc, argv, base::Bind(&BlinkMediaTestSuite::Run,
141 base::Unretained(&test_suite))); 140 base::Unretained(&test_suite)));
142 } 141 }
OLDNEW
« no previous file with comments | « no previous file | media/cdm/aes_decryptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698