| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_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 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "app/gfx/native_widget_types.h" | 11 #include "app/gfx/native_widget_types.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "third_party/npapi/bindings/npapi.h" | 14 #include "third_party/npapi/bindings/npapi.h" |
| 15 #include "webkit/glue/pepper/pepper.h" | 15 #include "webkit/glue/pepper/pepper.h" |
| 16 #include "webkit/api/public/WebCanvas.h" | 16 #include "third_party/WebKit/WebKit/chromium/public/WebCanvas.h" |
| 17 | 17 |
| 18 class FilePath; | 18 class FilePath; |
| 19 class GURL; | 19 class GURL; |
| 20 struct NPObject; | 20 struct NPObject; |
| 21 | 21 |
| 22 namespace WebKit { | 22 namespace WebKit { |
| 23 class WebInputEvent; | 23 class WebInputEvent; |
| 24 struct WebCursorInfo; | 24 struct WebCursorInfo; |
| 25 } | 25 } |
| 26 | 26 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 } | 139 } |
| 140 | 140 |
| 141 virtual NPError OpenFileInSandbox(const char* file_name, void** handle) { | 141 virtual NPError OpenFileInSandbox(const char* file_name, void** handle) { |
| 142 return NPERR_GENERIC_ERROR; | 142 return NPERR_GENERIC_ERROR; |
| 143 } | 143 } |
| 144 }; | 144 }; |
| 145 | 145 |
| 146 } // namespace webkit_glue | 146 } // namespace webkit_glue |
| 147 | 147 |
| 148 #endif // WEBKIT_GLUE_WEBPLUGIN_DELEGATE_H_ | 148 #endif // WEBKIT_GLUE_WEBPLUGIN_DELEGATE_H_ |
| OLD | NEW |