| Index: webkit/glue/plugins/webview_plugin.h
|
| diff --git a/webkit/glue/plugins/webview_plugin.h b/webkit/glue/plugins/webview_plugin.h
|
| index d2b19154312fd6701a682b277282de722f325acc..757a0120169a9d3dcd9a5e0c8e41163c53a9ab63 100644
|
| --- a/webkit/glue/plugins/webview_plugin.h
|
| +++ b/webkit/glue/plugins/webview_plugin.h
|
| @@ -5,11 +5,14 @@
|
| #ifndef WEBKIT_GLUE_PLUGINS_WEBVIEW_PLUGIN_H_
|
| #define WEBKIT_GLUE_PLUGINS_WEBVIEW_PLUGIN_H_
|
|
|
| +#include <list>
|
| +
|
| #include "base/scoped_ptr.h"
|
| #include "base/task.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h"
|
| -#include "third_party/WebKit/WebKit/chromium/public/WebPlugin.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebFrameClient.h"
|
| +#include "third_party/WebKit/WebKit/chromium/public/WebPlugin.h"
|
| +#include "third_party/WebKit/WebKit/chromium/public/WebURLResponse.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebViewClient.h"
|
|
|
| // This class implements the WebPlugin interface by forwarding drawing and
|
| @@ -108,8 +111,8 @@ class WebViewPlugin: public WebKit::WebPlugin, public WebKit::WebViewClient,
|
| WebKit::WebView* web_view_;
|
| gfx::Rect rect_;
|
|
|
| - scoped_ptr<WebKit::WebURLResponse> response_;
|
| - std::string data_;
|
| + WebKit::WebURLResponse response_;
|
| + std::list<std::string> data_;
|
| bool finished_loading_;
|
| scoped_ptr<WebKit::WebURLError> error_;
|
| };
|
|
|