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

Unified Diff: chrome/browser/ui/pdf/pdf_unsupported_feature.cc

Issue 19894003: Move webplugininfo.h to content/public. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/pdf/pdf_unsupported_feature.cc
===================================================================
--- chrome/browser/ui/pdf/pdf_unsupported_feature.cc (revision 212806)
+++ chrome/browser/ui/pdf/pdf_unsupported_feature.cc (working copy)
@@ -50,7 +50,7 @@
using content::Referrer;
using content::UserMetricsAction;
using content::WebContents;
-using webkit::WebPluginInfo;
+using content::WebPluginInfo;
namespace {
@@ -243,7 +243,7 @@
public:
// |reader| is NULL if Adobe Reader isn't installed.
PDFUnsupportedFeaturePromptDelegate(WebContents* web_contents,
- const webkit::WebPluginInfo* reader,
+ const content::WebPluginInfo* reader,
PluginFinder* plugin_finder);
virtual ~PDFUnsupportedFeaturePromptDelegate();
@@ -267,7 +267,7 @@
PDFUnsupportedFeaturePromptDelegate::PDFUnsupportedFeaturePromptDelegate(
WebContents* web_contents,
- const webkit::WebPluginInfo* reader,
+ const content::WebPluginInfo* reader,
PluginFinder* plugin_finder)
: web_contents_(web_contents),
reader_installed_(!!reader),
@@ -358,13 +358,13 @@
#if defined(OS_WIN) && defined(ENABLE_PLUGIN_INSTALLATION)
void GotPluginsCallback(int process_id,
int routing_id,
- const std::vector<webkit::WebPluginInfo>& plugins) {
+ const std::vector<content::WebPluginInfo>& plugins) {
WebContents* web_contents =
tab_util::GetWebContentsByID(process_id, routing_id);
if (!web_contents)
return;
- const webkit::WebPluginInfo* reader = NULL;
+ const content::WebPluginInfo* reader = NULL;
PluginFinder* plugin_finder = PluginFinder::GetInstance();
for (size_t i = 0; i < plugins.size(); ++i) {
scoped_ptr<PluginMetadata> plugin_metadata(

Powered by Google App Engine
This is Rietveld 408576698