Chromium Code Reviews| Index: content/renderer/media/buffered_data_source_unittest.cc | 
| diff --git a/content/renderer/media/buffered_data_source_unittest.cc b/content/renderer/media/buffered_data_source_unittest.cc | 
| index 9749991681475abb06f59e71d807e6e79b325e9e..b81d5e3e33334bb4494c5b40b9898175a61464c3 100644 | 
| --- a/content/renderer/media/buffered_data_source_unittest.cc | 
| +++ b/content/renderer/media/buffered_data_source_unittest.cc | 
| @@ -5,13 +5,13 @@ | 
| #include "base/bind.h" | 
| #include "base/message_loop/message_loop.h" | 
| #include "content/public/common/url_constants.h" | 
| -#include "content/renderer/media/buffered_data_source.h" | 
| #include "content/renderer/media/test_response_generator.h" | 
| #include "content/test/mock_webframeclient.h" | 
| #include "content/test/mock_weburlloader.h" | 
| #include "media/base/media_log.h" | 
| #include "media/base/mock_filters.h" | 
| #include "media/base/test_helpers.h" | 
| +#include "media/blink/buffered_data_source.h" | 
| #include "third_party/WebKit/public/platform/WebURLResponse.h" | 
| #include "third_party/WebKit/public/web/WebLocalFrame.h" | 
| #include "third_party/WebKit/public/web/WebView.h" | 
| @@ -29,7 +29,11 @@ using blink::WebURLLoader; | 
| using blink::WebURLResponse; | 
| using blink::WebView; | 
| -namespace content { | 
| +using content::MockWebURLLoader; | 
| +using content::MockWebFrameClient; | 
| +using content::TestResponseGenerator; | 
| + | 
| +namespace media { | 
| 
 
jamesr
2014/09/02 19:26:44
so long as this test lives in content/... it shoul
 
acolwell GONE FROM CHROMIUM
2014/09/02 20:20:25
I can't move it into media/ because the test relie
 
scherkus (not reviewing)
2014/09/02 20:29:51
Is moving the mocks an option? AFAICT they're only
 
 | 
| class MockBufferedDataSourceHost : public BufferedDataSourceHost { | 
| public: | 
| @@ -777,4 +781,4 @@ TEST_F(BufferedDataSourceTest, | 
| Stop(); | 
| } | 
| -} // namespace content | 
| +} // namespace media |