| 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 "../platform/WebCommon.h" | |
| 35 #include "../platform/WebFileSystem.h" | |
| 36 #include "../platform/WebFileSystemType.h" | |
| 37 #include "../platform/WebURLError.h" | |
| 38 #include "../platform/WebURLRequest.h" | |
| 39 #include "WebDOMMessageEvent.h" | 34 #include "WebDOMMessageEvent.h" |
| 40 #include "WebDataSource.h" | 35 #include "WebDataSource.h" |
| 41 #include "WebIconURL.h" | 36 #include "WebIconURL.h" |
| 42 #include "WebNavigationPolicy.h" | 37 #include "WebNavigationPolicy.h" |
| 43 #include "WebNavigationType.h" | 38 #include "WebNavigationType.h" |
| 44 #include "WebSecurityOrigin.h" | 39 #include "WebSecurityOrigin.h" |
| 45 #include "WebStorageQuotaType.h" | |
| 46 #include "WebTextDirection.h" | 40 #include "WebTextDirection.h" |
| 41 #include "public/platform/WebCommon.h" |
| 42 #include "public/platform/WebFileSystem.h" |
| 43 #include "public/platform/WebFileSystemType.h" |
| 44 #include "public/platform/WebStorageQuotaType.h" |
| 45 #include "public/platform/WebURLError.h" |
| 46 #include "public/platform/WebURLRequest.h" |
| 47 #include <v8.h> | 47 #include <v8.h> |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class WebApplicationCacheHost; | 51 class WebApplicationCacheHost; |
| 52 class WebApplicationCacheHostClient; | 52 class WebApplicationCacheHostClient; |
| 53 class WebCachedURLRequest; | 53 class WebCachedURLRequest; |
| 54 class WebCookieJar; | 54 class WebCookieJar; |
| 55 class WebDataSource; | 55 class WebDataSource; |
| 56 class WebDOMEvent; | 56 class WebDOMEvent; |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 // Extensions3D.h in WebCore/platform/graphics). | 373 // Extensions3D.h in WebCore/platform/graphics). |
| 374 virtual void didLoseWebGLContext(WebFrame*, int) { } | 374 virtual void didLoseWebGLContext(WebFrame*, int) { } |
| 375 | 375 |
| 376 protected: | 376 protected: |
| 377 ~WebFrameClient() { } | 377 ~WebFrameClient() { } |
| 378 }; | 378 }; |
| 379 | 379 |
| 380 } // namespace blink | 380 } // namespace blink |
| 381 | 381 |
| 382 #endif | 382 #endif |
| OLD | NEW |