| 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_PPAPI_PLUGIN_DELEGATE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "ppapi/c/pp_instance.h" | 28 #include "ppapi/c/pp_instance.h" |
| 29 #include "ppapi/c/pp_resource.h" | 29 #include "ppapi/c/pp_resource.h" |
| 30 #include "ppapi/c/pp_stdint.h" | 30 #include "ppapi/c/pp_stdint.h" |
| 31 #include "ppapi/c/private/ppb_flash.h" | 31 #include "ppapi/c/private/ppb_flash.h" |
| 32 #include "ppapi/c/private/ppb_tcp_socket_private.h" | 32 #include "ppapi/c/private/ppb_tcp_socket_private.h" |
| 33 #include "ppapi/c/private/ppb_udp_socket_private.h" | 33 #include "ppapi/c/private/ppb_udp_socket_private.h" |
| 34 #include "ppapi/shared_impl/dir_contents.h" | 34 #include "ppapi/shared_impl/dir_contents.h" |
| 35 #include "ui/gfx/size.h" | 35 #include "ui/gfx/size.h" |
| 36 #include "webkit/common/fileapi/file_system_types.h" | 36 #include "webkit/common/fileapi/file_system_types.h" |
| 37 #include "webkit/common/quota/quota_types.h" | 37 #include "webkit/common/quota/quota_types.h" |
| 38 #include "webkit/glue/clipboard_client.h" | |
| 39 #include "webkit/plugins/webkit_plugins_export.h" | 38 #include "webkit/plugins/webkit_plugins_export.h" |
| 40 | 39 |
| 41 class GURL; | 40 class GURL; |
| 42 class SkBitmap; | 41 class SkBitmap; |
| 43 class SkCanvas; | 42 class SkCanvas; |
| 44 class TransportDIB; | 43 class TransportDIB; |
| 45 struct PP_NetAddress_Private; | 44 struct PP_NetAddress_Private; |
| 46 | 45 |
| 47 namespace WebKit { | 46 namespace WebKit { |
| 48 class WebGraphicsContext3D; | 47 class WebGraphicsContext3D; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 class WebGamepads; | 83 class WebGamepads; |
| 85 class WebPlugin; | 84 class WebPlugin; |
| 86 struct WebCompositionUnderline; | 85 struct WebCompositionUnderline; |
| 87 struct WebCursorInfo; | 86 struct WebCursorInfo; |
| 88 struct WebURLError; | 87 struct WebURLError; |
| 89 class WebURLLoaderClient; | 88 class WebURLLoaderClient; |
| 90 class WebURLResponse; | 89 class WebURLResponse; |
| 91 } | 90 } |
| 92 | 91 |
| 93 namespace webkit_glue { | 92 namespace webkit_glue { |
| 94 class ClipboardClient; | |
| 95 class P2PTransport; | 93 class P2PTransport; |
| 96 class NetworkListObserver; | 94 class NetworkListObserver; |
| 97 } // namespace webkit_glue | 95 } // namespace webkit_glue |
| 98 | 96 |
| 99 namespace webkit { | 97 namespace webkit { |
| 100 | 98 |
| 101 namespace ppapi { | 99 namespace ppapi { |
| 102 | 100 |
| 103 class FileIO; | 101 class FileIO; |
| 104 class FullscreenContainer; | 102 class FullscreenContainer; |
| (...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 // The loader object should set itself on the PluginInstance as the document | 692 // The loader object should set itself on the PluginInstance as the document |
| 695 // loader using set_document_loader. | 693 // loader using set_document_loader. |
| 696 virtual void HandleDocumentLoad(PluginInstance* instance, | 694 virtual void HandleDocumentLoad(PluginInstance* instance, |
| 697 const WebKit::WebURLResponse& response) = 0; | 695 const WebKit::WebURLResponse& response) = 0; |
| 698 }; | 696 }; |
| 699 | 697 |
| 700 } // namespace ppapi | 698 } // namespace ppapi |
| 701 } // namespace webkit | 699 } // namespace webkit |
| 702 | 700 |
| 703 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ | 701 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ |
| OLD | NEW |