| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebFrameClient_h | 31 #ifndef WebFrameClient_h |
| 32 #define WebFrameClient_h | 32 #define WebFrameClient_h |
| 33 | 33 |
| 34 #include <v8.h> | |
| 35 #include "../platform/WebColor.h" | |
| 36 #include "WebAXObject.h" | 34 #include "WebAXObject.h" |
| 37 #include "WebDOMMessageEvent.h" | 35 #include "WebDOMMessageEvent.h" |
| 38 #include "WebDataSource.h" | 36 #include "WebDataSource.h" |
| 39 #include "WebFileChooserParams.h" | 37 #include "WebFileChooserParams.h" |
| 40 #include "WebFormElement.h" | 38 #include "WebFormElement.h" |
| 41 #include "WebFrame.h" | 39 #include "WebFrame.h" |
| 42 #include "WebFrameOwnerProperties.h" | 40 #include "WebFrameOwnerProperties.h" |
| 43 #include "WebHistoryCommitType.h" | 41 #include "WebHistoryCommitType.h" |
| 44 #include "WebHistoryItem.h" | 42 #include "WebHistoryItem.h" |
| 45 #include "WebIconURL.h" | 43 #include "WebIconURL.h" |
| 46 #include "WebNavigationPolicy.h" | 44 #include "WebNavigationPolicy.h" |
| 47 #include "WebNavigationType.h" | 45 #include "WebNavigationType.h" |
| 48 #include "WebNavigatorContentUtilsClient.h" | 46 #include "WebNavigatorContentUtilsClient.h" |
| 49 #include "WebSandboxFlags.h" | 47 #include "WebSandboxFlags.h" |
| 50 #include "WebTextDirection.h" | 48 #include "WebTextDirection.h" |
| 51 #include "public/platform/BlameContext.h" | 49 #include "public/platform/BlameContext.h" |
| 50 #include "public/platform/WebColor.h" |
| 52 #include "public/platform/WebCommon.h" | 51 #include "public/platform/WebCommon.h" |
| 53 #include "public/platform/WebContentSecurityPolicyStruct.h" | 52 #include "public/platform/WebContentSecurityPolicyStruct.h" |
| 54 #include "public/platform/WebEffectiveConnectionType.h" | 53 #include "public/platform/WebEffectiveConnectionType.h" |
| 55 #include "public/platform/WebFeaturePolicy.h" | 54 #include "public/platform/WebFeaturePolicy.h" |
| 56 #include "public/platform/WebFileSystem.h" | 55 #include "public/platform/WebFileSystem.h" |
| 57 #include "public/platform/WebFileSystemType.h" | 56 #include "public/platform/WebFileSystemType.h" |
| 58 #include "public/platform/WebInsecureRequestPolicy.h" | 57 #include "public/platform/WebInsecureRequestPolicy.h" |
| 59 #include "public/platform/WebLoadingBehaviorFlag.h" | 58 #include "public/platform/WebLoadingBehaviorFlag.h" |
| 60 #include "public/platform/WebPageVisibilityState.h" | 59 #include "public/platform/WebPageVisibilityState.h" |
| 61 #include "public/platform/WebSecurityOrigin.h" | 60 #include "public/platform/WebSecurityOrigin.h" |
| 62 #include "public/platform/WebSetSinkIdCallbacks.h" | 61 #include "public/platform/WebSetSinkIdCallbacks.h" |
| 63 #include "public/platform/WebStorageQuotaCallbacks.h" | 62 #include "public/platform/WebStorageQuotaCallbacks.h" |
| 64 #include "public/platform/WebStorageQuotaType.h" | 63 #include "public/platform/WebStorageQuotaType.h" |
| 65 #include "public/platform/WebURLError.h" | 64 #include "public/platform/WebURLError.h" |
| 66 #include "public/platform/WebURLRequest.h" | 65 #include "public/platform/WebURLRequest.h" |
| 66 #include "v8/include/v8.h" |
| 67 | 67 |
| 68 namespace blink { | 68 namespace blink { |
| 69 | 69 |
| 70 enum class WebTreeScopeType; | 70 enum class WebTreeScopeType; |
| 71 class WebApplicationCacheHost; | 71 class WebApplicationCacheHost; |
| 72 class WebApplicationCacheHostClient; | 72 class WebApplicationCacheHostClient; |
| 73 class WebColorChooser; | 73 class WebColorChooser; |
| 74 class WebColorChooserClient; | 74 class WebColorChooserClient; |
| 75 class WebContentDecryptionModule; | 75 class WebContentDecryptionModule; |
| 76 class WebCookieJar; | 76 class WebCookieJar; |
| (...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 // Overwrites the given URL to use an HTML5 embed if possible. | 754 // Overwrites the given URL to use an HTML5 embed if possible. |
| 755 // An empty URL is returned if the URL is not overriden. | 755 // An empty URL is returned if the URL is not overriden. |
| 756 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { | 756 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { |
| 757 return WebURL(); | 757 return WebURL(); |
| 758 } | 758 } |
| 759 }; | 759 }; |
| 760 | 760 |
| 761 } // namespace blink | 761 } // namespace blink |
| 762 | 762 |
| 763 #endif | 763 #endif |
| OLD | NEW |