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

Unified Diff: webkit/glue/plugins/webplugin_impl.cc

Issue 5783004: Keep deinlining stuff. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Well, it all compiles locally? 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: webkit/glue/plugins/webplugin_impl.cc
diff --git a/webkit/glue/plugins/webplugin_impl.cc b/webkit/glue/plugins/webplugin_impl.cc
index 3891563019e862716b5a8330e1525dae6e259f57..666775b1dde04808d0c04d4feaf337a0cfc9b18e 100644
--- a/webkit/glue/plugins/webplugin_impl.cc
+++ b/webkit/glue/plugins/webplugin_impl.cc
@@ -562,6 +562,10 @@ void WebPluginImpl::SetWindow(gfx::PluginWindowHandle window) {
#endif
}
+void WebPluginImpl::SetAcceptsInputEvents(bool accepts) {
+ accepts_input_events_ = accepts;
+}
+
void WebPluginImpl::WillDestroyWindow(gfx::PluginWindowHandle window) {
DCHECK_EQ(window, window_);
window_ = gfx::kNullPluginWindow;
@@ -623,6 +627,10 @@ bool WebPluginImpl::SetPostData(WebURLRequest* request,
return rv;
}
+WebPluginDelegate* WebPluginImpl::delegate() {
+ return delegate_;
+}
+
bool WebPluginImpl::IsValidUrl(const GURL& url, Referrer referrer_flag) {
if (referrer_flag == PLUGIN_SRC &&
mime_type_ == "application/x-shockwave-flash" &&
@@ -1250,6 +1258,10 @@ void WebPluginImpl::SetDeferResourceLoading(unsigned long resource_id,
}
}
+bool WebPluginImpl::IsOffTheRecord() {
+ return false;
+}
+
void WebPluginImpl::HandleHttpMultipartResponse(
const WebURLResponse& response, WebPluginResourceClient* client) {
std::string multipart_boundary;

Powered by Google App Engine
This is Rietveld 408576698