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

Unified Diff: chrome/browser/plugins/plugin_prefs.h

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/plugins/plugin_prefs.h
===================================================================
--- chrome/browser/plugins/plugin_prefs.h (revision 212806)
+++ chrome/browser/plugins/plugin_prefs.h (working copy)
@@ -23,7 +23,7 @@
class ListValue;
}
-namespace webkit {
+namespace content {
struct WebPluginInfo;
}
@@ -70,7 +70,7 @@
PolicyStatus PolicyStatusForPlugin(const string16& name) const;
// Returns whether the plugin is enabled or not.
- bool IsPluginEnabled(const webkit::WebPluginInfo& plugin) const;
+ bool IsPluginEnabled(const content::WebPluginInfo& plugin) const;
void set_profile(Profile* profile) { profile_ = profile; }
@@ -117,16 +117,16 @@
void EnablePluginGroupInternal(
bool enabled,
const string16& group_name,
- const std::vector<webkit::WebPluginInfo>& plugins);
+ const std::vector<content::WebPluginInfo>& plugins);
void EnablePluginInternal(
bool enabled,
const base::FilePath& path,
PluginFinder* plugin_finder,
const base::Callback<void(bool)>& callback,
- const std::vector<webkit::WebPluginInfo>& plugins);
+ const std::vector<content::WebPluginInfo>& plugins);
// Called on the UI thread with the plugin data to save the preferences.
- void OnUpdatePreferences(const std::vector<webkit::WebPluginInfo>& plugins);
+ void OnUpdatePreferences(const std::vector<content::WebPluginInfo>& plugins);
// Sends the notification that plugin data has changed.
void NotifyPluginStatusChanged();

Powered by Google App Engine
This is Rietveld 408576698