| Index: Source/core/dom/DOMImplementation.cpp
|
| diff --git a/Source/core/dom/DOMImplementation.cpp b/Source/core/dom/DOMImplementation.cpp
|
| index 987f050c38a14ccb3debbdd1b6583ecc2b2a9ccd..428e70517ab3ed4bd6abab7d9eac9799f54aee2e 100644
|
| --- a/Source/core/dom/DOMImplementation.cpp
|
| +++ b/Source/core/dom/DOMImplementation.cpp
|
| @@ -55,7 +55,6 @@
|
| #include "platform/ContentType.h"
|
| #include "platform/MIMETypeRegistry.h"
|
| #include "platform/graphics/Image.h"
|
| -#include "platform/graphics/media/MediaPlayer.h"
|
| #include "platform/plugins/PluginData.h"
|
| #include "platform/weborigin/SecurityOrigin.h"
|
| #include "wtf/StdLibExtras.h"
|
| @@ -356,7 +355,7 @@ PassRefPtrWillBeRawPtr<Document> DOMImplementation::createDocument(const String&
|
| if (Image::supportsType(type))
|
| return ImageDocument::create(init);
|
|
|
| - // Check to see if the type can be played by our MediaPlayer, if so create a MediaDocument
|
| + // Check to see if the type can be played by our media player, if so create a MediaDocument
|
| if (HTMLMediaElement::supportsType(ContentType(type)))
|
| return MediaDocument::create(init);
|
|
|
|
|