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

Unified Diff: chrome/browser/plugin_updater.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/plugin_updater.h
diff --git a/chrome/browser/plugin_updater.h b/chrome/browser/plugin_updater.h
index 2b8cd106ad2ce79061ec5de04b162ff53385a28c..78a3cd6b9393e750a9fde3620fc8066e495e18dd 100644
--- a/chrome/browser/plugin_updater.h
+++ b/chrome/browser/plugin_updater.h
@@ -6,6 +6,8 @@
#define CHROME_BROWSER_PLUGIN_UPDATER_H_
#pragma once
+#include <vector>
+
#include "base/basictypes.h"
#include "base/file_path.h"
#include "base/singleton.h"
@@ -54,9 +56,10 @@ class PluginUpdater : public NotificationObserver {
static void GetPreferencesDataOnFileThread(void* profile);
// Called on the UI thread with the plugin data to save the preferences.
- static void OnUpdatePreferences(Profile* profile,
- const std::vector<WebPluginInfo>& plugins,
- const NPAPI::PluginList::PluginMap& groups);
+ static void OnUpdatePreferences(
+ Profile* profile,
+ const std::vector<WebPluginInfo>& plugins,
+ const std::vector<PluginGroup>& groups);
// Queues sending the notification that plugin data has changed. This is done
// so that if a bunch of changes happen, we only send one notification.

Powered by Google App Engine
This is Rietveld 408576698