Index: chrome/renderer/plugins/plugin_placeholder.cc |
=================================================================== |
--- chrome/renderer/plugins/plugin_placeholder.cc (revision 216518) |
+++ chrome/renderer/plugins/plugin_placeholder.cc (working copy) |
@@ -16,6 +16,7 @@ |
#include "chrome/renderer/chrome_content_renderer_client.h" |
#include "chrome/renderer/custom_menu_commands.h" |
#include "chrome/renderer/plugins/plugin_uma.h" |
+#include "content/public/common/content_constants.h" |
#include "content/public/common/context_menu_params.h" |
#include "content/public/renderer/render_thread.h" |
#include "content/public/renderer/render_view.h" |
@@ -39,10 +40,6 @@ |
#include "ui/base/resource/resource_bundle.h" |
#include "ui/webui/jstemplate_builder.h" |
-#if defined(ENABLE_MOBILE_YOUTUBE_PLUGIN) |
-#include "webkit/plugins/plugin_constants.h" |
-#endif |
- |
using content::RenderThread; |
using content::RenderView; |
using WebKit::WebContextMenuData; |
@@ -624,6 +621,6 @@ |
EndsWith(host, "youtube-nocookie.com", true); |
return is_youtube && IsValidYouTubeVideo(url.path()) && |
- LowerCaseEqualsASCII(mime_type, kFlashPluginSwfMimeType); |
+ LowerCaseEqualsASCII(mime_type, content::kFlashPluginSwfMimeType); |
} |
#endif |