| Index: webkit/glue/plugins/webplugin_impl.cc
|
| diff --git a/webkit/glue/plugins/webplugin_impl.cc b/webkit/glue/plugins/webplugin_impl.cc
|
| index 80bc197fdd768a4eb72b806e3b24b4ae8d591784..704145b3d059675bd31c5f50893b853f4ca8468a 100644
|
| --- a/webkit/glue/plugins/webplugin_impl.cc
|
| +++ b/webkit/glue/plugins/webplugin_impl.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "webkit/glue/plugins/webplugin_impl.h"
|
|
|
| +#include "base/linked_ptr.h"
|
| #include "base/logging.h"
|
| #include "base/message_loop.h"
|
| #include "base/string_util.h"
|
| @@ -207,6 +208,14 @@ void GetResponseInfo(const WebURLResponse& response,
|
|
|
| // WebKit::WebPlugin ----------------------------------------------------------
|
|
|
| +struct WebPluginImpl::ClientInfo {
|
| + unsigned long id;
|
| + WebPluginResourceClient* client;
|
| + WebKit::WebURLRequest request;
|
| + bool pending_failure_notification;
|
| + linked_ptr<WebKit::WebURLLoader> loader;
|
| +};
|
| +
|
| bool WebPluginImpl::initialize(WebPluginContainer* container) {
|
| if (!page_delegate_)
|
| return false;
|
|
|