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

Side by Side Diff: chromecast/media/audio/cast_audio_output_stream_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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "chromecast/media/audio/cast_audio_output_stream.h" 5 #include "chromecast/media/audio/cast_audio_output_stream.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "base/message_loop/message_loop.h"
13 #include "base/run_loop.h" 14 #include "base/run_loop.h"
14 #include "base/time/time.h" 15 #include "base/time/time.h"
15 #include "chromecast/base/metrics/cast_metrics_test_helper.h" 16 #include "chromecast/base/metrics/cast_metrics_test_helper.h"
16 #include "chromecast/media/audio/cast_audio_manager.h" 17 #include "chromecast/media/audio/cast_audio_manager.h"
17 #include "chromecast/public/media/cast_decoder_buffer.h" 18 #include "chromecast/public/media/cast_decoder_buffer.h"
18 #include "chromecast/public/media/media_pipeline_backend.h" 19 #include "chromecast/public/media/media_pipeline_backend.h"
19 #include "testing/gmock/include/gmock/gmock.h" 20 #include "testing/gmock/include/gmock/gmock.h"
20 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
21 22
22 using ::testing::Invoke; 23 using ::testing::Invoke;
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 557
557 stream->Start(source_callback.get()); 558 stream->Start(source_callback.get());
558 RunMessageLoopFor(2); 559 RunMessageLoopFor(2);
559 stream->Stop(); 560 stream->Stop();
560 stream->Close(); 561 stream->Close();
561 } 562 }
562 563
563 } // namespace 564 } // namespace
564 } // namespace media 565 } // namespace media
565 } // namespace chromecast 566 } // namespace chromecast
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698