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

Side by Side Diff: content/renderer/media/rtc_peer_connection_handler_unittest.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/renderer/media/rtc_peer_connection_handler.h" 5 #include "content/renderer/media/rtc_peer_connection_handler.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <map> 9 #include <map>
10 #include <memory> 10 #include <memory>
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/location.h" 15 #include "base/location.h"
16 #include "base/message_loop/message_loop.h"
16 #include "base/run_loop.h" 17 #include "base/run_loop.h"
17 #include "base/single_thread_task_runner.h" 18 #include "base/single_thread_task_runner.h"
18 #include "base/strings/utf_string_conversions.h" 19 #include "base/strings/utf_string_conversions.h"
19 #include "base/threading/thread_task_runner_handle.h" 20 #include "base/threading/thread_task_runner_handle.h"
20 #include "base/values.h" 21 #include "base/values.h"
21 #include "content/child/child_process.h" 22 #include "content/child/child_process.h"
22 #include "content/renderer/media/media_stream.h" 23 #include "content/renderer/media/media_stream.h"
23 #include "content/renderer/media/media_stream_audio_source.h" 24 #include "content/renderer/media/media_stream_audio_source.h"
24 #include "content/renderer/media/media_stream_audio_track.h" 25 #include "content/renderer/media/media_stream_audio_track.h"
25 #include "content/renderer/media/media_stream_source.h" 26 #include "content/renderer/media/media_stream_source.h"
(...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 testing::Ref(tracks[0]))); 1412 testing::Ref(tracks[0])));
1412 1413
1413 std::unique_ptr<blink::WebRTCDTMFSenderHandler> sender( 1414 std::unique_ptr<blink::WebRTCDTMFSenderHandler> sender(
1414 pc_handler_->CreateDTMFSender(tracks[0])); 1415 pc_handler_->CreateDTMFSender(tracks[0]));
1415 EXPECT_TRUE(sender.get()); 1416 EXPECT_TRUE(sender.get());
1416 1417
1417 StopAllTracks(local_stream); 1418 StopAllTracks(local_stream);
1418 } 1419 }
1419 1420
1420 } // namespace content 1421 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698