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

Unified Diff: chrome/browser/mock_plugin_exceptions_table_model.h

Issue 5516004: Clean up PluginGroup and related code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 10 years 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/mock_plugin_exceptions_table_model.h
diff --git a/chrome/browser/mock_plugin_exceptions_table_model.h b/chrome/browser/mock_plugin_exceptions_table_model.h
index d1f5da737d2cbf77d67532c35e552183d81a286f..15a1c5b8ec5336c04889ac67b9a78d790732839f 100644
--- a/chrome/browser/mock_plugin_exceptions_table_model.h
+++ b/chrome/browser/mock_plugin_exceptions_table_model.h
@@ -17,13 +17,13 @@ class MockPluginExceptionsTableModel : public PluginExceptionsTableModel {
: PluginExceptionsTableModel(map, otr_map) {}
virtual ~MockPluginExceptionsTableModel() {}
- void set_plugins(const NPAPI::PluginList::PluginMap& plugins);
+ void set_plugins(std::vector<PluginGroup>& plugins);
protected:
- virtual void GetPlugins(NPAPI::PluginList::PluginMap* plugins);
+ virtual void GetPlugins(std::vector<PluginGroup>* plugin_groups);
private:
- NPAPI::PluginList::PluginMap plugins_;
+ std::vector<PluginGroup> plugins_;
};
#endif // CHROME_BROWSER_MOCK_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_

Powered by Google App Engine
This is Rietveld 408576698