| Index: content/renderer/media/webmediasourceclient_impl.cc
|
| diff --git a/webkit/renderer/media/webmediasourceclient_impl.cc b/content/renderer/media/webmediasourceclient_impl.cc
|
| similarity index 93%
|
| rename from webkit/renderer/media/webmediasourceclient_impl.cc
|
| rename to content/renderer/media/webmediasourceclient_impl.cc
|
| index 0e7ebab9539cb132215df57814e0af78e7770677..1aef77393fd1a8fd13d983d0ed3dea3730080c79 100644
|
| --- a/webkit/renderer/media/webmediasourceclient_impl.cc
|
| +++ b/content/renderer/media/webmediasourceclient_impl.cc
|
| @@ -2,18 +2,18 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "webkit/renderer/media/webmediasourceclient_impl.h"
|
| +#include "content/renderer/media/webmediasourceclient_impl.h"
|
|
|
| #include "base/guid.h"
|
| +#include "content/renderer/media/websourcebuffer_impl.h"
|
| #include "media/filters/chunk_demuxer.h"
|
| #include "third_party/WebKit/public/platform/WebCString.h"
|
| #include "third_party/WebKit/public/platform/WebString.h"
|
| -#include "webkit/renderer/media/websourcebuffer_impl.h"
|
|
|
| using ::WebKit::WebString;
|
| using ::WebKit::WebMediaSourceClient;
|
|
|
| -namespace webkit_media {
|
| +namespace content {
|
|
|
| #define COMPILE_ASSERT_MATCHING_STATUS_ENUM(webkit_name, chromium_name) \
|
| COMPILE_ASSERT(static_cast<int>(WebMediaSourceClient::webkit_name) == \
|
| @@ -80,4 +80,4 @@ void WebMediaSourceClientImpl::endOfStream(
|
| demuxer_->EndOfStream(pipeline_status);
|
| }
|
|
|
| -} // namespace webkit_media
|
| +} // namespace content
|
|
|