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

Unified Diff: chrome/browser/automation/testing_automation_provider.h

Issue 7980011: Convert the PluginService interface to be an async wrapper around PluginList. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review Created 9 years, 3 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/automation/testing_automation_provider.h
diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h
index 06a2b1a3557d56dee7fe6e89bd4acf40ebfd536a..e60a56d4888d4a3e7f48c857ef7c751770ca5451 100644
--- a/chrome/browser/automation/testing_automation_provider.h
+++ b/chrome/browser/automation/testing_automation_provider.h
@@ -7,6 +7,7 @@
#pragma once
#include <string>
+#include <vector>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
@@ -20,6 +21,7 @@
#include "content/common/notification_registrar.h"
#include "content/common/page_type.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
+#include "webkit/plugins/webplugininfo.h"
class ImporterList;
class TemplateURLService;
@@ -492,6 +494,10 @@ class TestingAutomationProvider : public AutomationProvider,
void GetPluginsInfo(Browser* browser,
base::DictionaryValue* args,
IPC::Message* reply_message);
+ void GetPluginsInfoSendReply(Browser* browser,
jam 2011/09/21 00:04:51 info: GetPluginsInfoReply or GetPluginsInfoCallbac
+ base::DictionaryValue* args,
+ IPC::Message* reply_message,
+ std::vector<webkit::WebPluginInfo> plugins);
jam 2011/09/21 00:04:51 nit: this should be passed as a const ref per the
// Enable a plugin.
// Uses the JSON interface for input/output.

Powered by Google App Engine
This is Rietveld 408576698