OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_GLUE_WEBPLUGIN_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ |
6 #define WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ | 6 #define WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "app/gfx/native_widget_types.h" | 12 #include "app/gfx/native_widget_types.h" |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/linked_ptr.h" | 14 #include "base/linked_ptr.h" |
15 #include "base/task.h" | 15 #include "base/task.h" |
16 #include "base/weak_ptr.h" | 16 #include "base/weak_ptr.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 #include "webkit/api/public/WebPlugin.h" | 18 #include "third_party/WebKit/WebKit/chromium/public/WebPlugin.h" |
19 #include "webkit/api/public/WebString.h" | 19 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
20 #include "webkit/api/public/WebURLLoaderClient.h" | 20 #include "third_party/WebKit/WebKit/chromium/public/WebURLLoaderClient.h" |
21 #include "webkit/api/public/WebURLRequest.h" | 21 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h" |
22 #include "webkit/api/public/WebVector.h" | 22 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h" |
23 #include "webkit/glue/webplugin.h" | 23 #include "webkit/glue/webplugin.h" |
24 | 24 |
25 class WebViewDelegate; | 25 class WebViewDelegate; |
26 | 26 |
27 namespace WebKit { | 27 namespace WebKit { |
28 class WebFrame; | 28 class WebFrame; |
29 class WebPluginContainer; | 29 class WebPluginContainer; |
30 class WebURLResponse; | 30 class WebURLResponse; |
31 class WebURLLoader; | 31 class WebURLLoader; |
32 } | 32 } |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 std::vector<std::string> arg_values_; | 274 std::vector<std::string> arg_values_; |
275 | 275 |
276 ScopedRunnableMethodFactory<WebPluginImpl> method_factory_; | 276 ScopedRunnableMethodFactory<WebPluginImpl> method_factory_; |
277 | 277 |
278 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); | 278 DISALLOW_COPY_AND_ASSIGN(WebPluginImpl); |
279 }; | 279 }; |
280 | 280 |
281 } // namespace webkit_glue | 281 } // namespace webkit_glue |
282 | 282 |
283 #endif // #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ | 283 #endif // #ifndef WEBKIT_GLUE_WEBPLUGIN_IMPL_H_ |
OLD | NEW |