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 CHROME_RENDERER_PLUGINS_WEBVIEW_PLUGIN_H_ | 5 #ifndef CHROME_RENDERER_PLUGINS_WEBVIEW_PLUGIN_H_ |
6 #define CHROME_RENDERER_PLUGINS_WEBVIEW_PLUGIN_H_ | 6 #define CHROME_RENDERER_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/sequenced_task_runner_helpers.h" | 11 #include "base/sequenced_task_runner_helpers.h" |
12 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 12 #include "third_party/WebKit/public/platform/WebString.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLResponse.h" | 13 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" |
18 | 18 |
19 struct WebPreferences; | 19 struct WebPreferences; |
20 | 20 |
21 namespace WebKit { | 21 namespace WebKit { |
22 class WebMouseEvent; | 22 class WebMouseEvent; |
23 } | 23 } |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 gfx::Rect rect_; | 149 gfx::Rect rect_; |
150 | 150 |
151 WebKit::WebURLResponse response_; | 151 WebKit::WebURLResponse response_; |
152 std::list<std::string> data_; | 152 std::list<std::string> data_; |
153 bool finished_loading_; | 153 bool finished_loading_; |
154 scoped_ptr<WebKit::WebURLError> error_; | 154 scoped_ptr<WebKit::WebURLError> error_; |
155 WebKit::WebString old_title_; | 155 WebKit::WebString old_title_; |
156 }; | 156 }; |
157 | 157 |
158 #endif // CHROME_RENDERER_PLUGINS_WEBVIEW_PLUGIN_H_ | 158 #endif // CHROME_RENDERER_PLUGINS_WEBVIEW_PLUGIN_H_ |
OLD | NEW |