OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_PLUGINS_WEBVIEW_PLUGIN_H_ | 5 #ifndef WEBKIT_PLUGINS_WEBVIEW_PLUGIN_H_ |
6 #define WEBKIT_PLUGINS_WEBVIEW_PLUGIN_H_ | 6 #define WEBKIT_PLUGINS_WEBVIEW_PLUGIN_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/message_loop_helpers.h" | 11 #include "base/sequenced_task_runner_helpers.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRespon
se.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRespon
se.h" | |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" |
18 #include "webkit/plugins/webkit_plugins_export.h" | 18 #include "webkit/plugins/webkit_plugins_export.h" |
19 | 19 |
20 namespace WebKit { | 20 namespace WebKit { |
21 class WebMouseEvent; | 21 class WebMouseEvent; |
22 } | 22 } |
23 | 23 |
24 namespace webkit_glue { | 24 namespace webkit_glue { |
25 struct WebPreferences; | 25 struct WebPreferences; |
26 } | 26 } |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 WebKit::WebURLResponse response_; | 155 WebKit::WebURLResponse response_; |
156 std::list<std::string> data_; | 156 std::list<std::string> data_; |
157 bool finished_loading_; | 157 bool finished_loading_; |
158 scoped_ptr<WebKit::WebURLError> error_; | 158 scoped_ptr<WebKit::WebURLError> error_; |
159 WebKit::WebString old_title_; | 159 WebKit::WebString old_title_; |
160 }; | 160 }; |
161 | 161 |
162 } // namespace webkit | 162 } // namespace webkit |
163 | 163 |
164 #endif // WEBKIT_PLUGINS_WEBVIEW_PLUGIN_H_ | 164 #endif // WEBKIT_PLUGINS_WEBVIEW_PLUGIN_H_ |
OLD | NEW |