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

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

Issue 801173002: Fix message routing for BrowserPlugin in iframe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More cleanup 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
Index: content/public/renderer/browser_plugin_delegate.cc
diff --git a/content/common/input/did_overscroll_params.cc b/content/public/renderer/browser_plugin_delegate.cc
similarity index 58%
copy from content/common/input/did_overscroll_params.cc
copy to content/public/renderer/browser_plugin_delegate.cc
index 2b69d8600e7ce5ac0974196407ef3aa71e0a2995..257ae29058aacd97d18caa85662796e53cf2272c 100644
--- a/content/common/input/did_overscroll_params.cc
+++ b/content/public/renderer/browser_plugin_delegate.cc
@@ -2,14 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/common/input/did_overscroll_params.h"
+#include "content/public/renderer/browser_plugin_delegate.h"
namespace content {
-DidOverscrollParams::DidOverscrollParams() {
-}
-
-DidOverscrollParams::~DidOverscrollParams() {
+bool BrowserPluginDelegate::OnMessageReceived(const IPC::Message& message) {
+ return false;
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698