| 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> |
| 34 #include "../platform/WebColor.h" | 35 #include "../platform/WebColor.h" |
| 35 #include "WebAXObject.h" | 36 #include "WebAXObject.h" |
| 36 #include "WebDOMMessageEvent.h" | 37 #include "WebDOMMessageEvent.h" |
| 37 #include "WebDataSource.h" | 38 #include "WebDataSource.h" |
| 38 #include "WebFileChooserParams.h" | 39 #include "WebFileChooserParams.h" |
| 39 #include "WebFormElement.h" | 40 #include "WebFormElement.h" |
| 40 #include "WebFrame.h" | 41 #include "WebFrame.h" |
| 41 #include "WebFrameOwnerProperties.h" | 42 #include "WebFrameOwnerProperties.h" |
| 42 #include "WebHistoryCommitType.h" | 43 #include "WebHistoryCommitType.h" |
| 43 #include "WebHistoryItem.h" | 44 #include "WebHistoryItem.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 56 #include "public/platform/WebInsecureRequestPolicy.h" | 57 #include "public/platform/WebInsecureRequestPolicy.h" |
| 57 #include "public/platform/WebLoadingBehaviorFlag.h" | 58 #include "public/platform/WebLoadingBehaviorFlag.h" |
| 58 #include "public/platform/WebPageVisibilityState.h" | 59 #include "public/platform/WebPageVisibilityState.h" |
| 59 #include "public/platform/WebSecurityOrigin.h" | 60 #include "public/platform/WebSecurityOrigin.h" |
| 60 #include "public/platform/WebSetSinkIdCallbacks.h" | 61 #include "public/platform/WebSetSinkIdCallbacks.h" |
| 61 #include "public/platform/WebStorageQuotaCallbacks.h" | 62 #include "public/platform/WebStorageQuotaCallbacks.h" |
| 62 #include "public/platform/WebStorageQuotaType.h" | 63 #include "public/platform/WebStorageQuotaType.h" |
| 63 #include "public/platform/WebURLError.h" | 64 #include "public/platform/WebURLError.h" |
| 64 #include "public/platform/WebURLRequest.h" | 65 #include "public/platform/WebURLRequest.h" |
| 65 #include "public/web/WebContentSecurityPolicy.h" | 66 #include "public/web/WebContentSecurityPolicy.h" |
| 66 #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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 // Overwrites the given URL to use an HTML5 embed if possible. | 752 // Overwrites the given URL to use an HTML5 embed if possible. |
| 753 // An empty URL is returned if the URL is not overriden. | 753 // An empty URL is returned if the URL is not overriden. |
| 754 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { | 754 virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) { |
| 755 return WebURL(); | 755 return WebURL(); |
| 756 } | 756 } |
| 757 }; | 757 }; |
| 758 | 758 |
| 759 } // namespace blink | 759 } // namespace blink |
| 760 | 760 |
| 761 #endif | 761 #endif |
| OLD | NEW |