| 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;
|
|
|