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

Unified Diff: content/public/renderer/browser_plugin_delegate.cc

Issue 729333002: Add PostMessage support for MimeHandlerView (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « content/public/renderer/browser_plugin_delegate.h ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/renderer/browser_plugin_delegate.cc
diff --git a/content/public/renderer/browser_plugin_delegate.cc b/content/public/renderer/browser_plugin_delegate.cc
index 257ae29058aacd97d18caa85662796e53cf2272c..dd0eafcc42141ae4398f2614da2cdca4537afb27 100644
--- a/content/public/renderer/browser_plugin_delegate.cc
+++ b/content/public/renderer/browser_plugin_delegate.cc
@@ -4,10 +4,17 @@
#include "content/public/renderer/browser_plugin_delegate.h"
+#include "v8/include/v8.h"
+
namespace content {
bool BrowserPluginDelegate::OnMessageReceived(const IPC::Message& message) {
return false;
}
+v8::Local<v8::Object> BrowserPluginDelegate::V8ScriptableObject(
+ v8::Isolate* isolate) {
+ return v8::Local<v8::Object>();
+}
+
} // namespace content
« no previous file with comments | « content/public/renderer/browser_plugin_delegate.h ('k') | content/renderer/browser_plugin/browser_plugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698