OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_DELEGATE_H_ | 5 #ifndef WEBKIT_GLUE_WEBPLUGIN_DELEGATE_H_ |
6 #define WEBKIT_GLUE_WEBPLUGIN_DELEGATE_H_ | 6 #define WEBKIT_GLUE_WEBPLUGIN_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/gfx/native_widget_types.h" | 10 #include "app/gfx/native_widget_types.h" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 #include "third_party/npapi/bindings/npapi.h" | 12 #include "third_party/npapi/bindings/npapi.h" |
13 | 13 |
14 class FilePath; | 14 class FilePath; |
15 class GURL; | 15 class GURL; |
16 struct NPObject; | 16 struct NPObject; |
17 | 17 |
18 namespace WebKit { | 18 namespace WebKit { |
19 class WebInputEvent; | 19 class WebInputEvent; |
20 struct WebCursorInfo; | 20 struct WebCursorInfo; |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 virtual WebPluginResourceClient* CreateResourceClient(int resource_id, | 121 virtual WebPluginResourceClient* CreateResourceClient(int resource_id, |
122 const GURL& url, | 122 const GURL& url, |
123 bool notify_needed, | 123 bool notify_needed, |
124 intptr_t notify_data, | 124 intptr_t notify_data, |
125 intptr_t stream) = 0; | 125 intptr_t stream) = 0; |
126 }; | 126 }; |
127 | 127 |
128 } // namespace webkit_glue | 128 } // namespace webkit_glue |
129 | 129 |
130 #endif // WEBKIT_GLUE_WEBPLUGIN_DELEGATE_H_ | 130 #endif // WEBKIT_GLUE_WEBPLUGIN_DELEGATE_H_ |
OLD | NEW |