| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 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 14 matching lines...) Expand all Loading... |
| 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 WebView_h | 31 #ifndef WebView_h |
| 32 #define WebView_h | 32 #define WebView_h |
| 33 | 33 |
| 34 #include "../platform/WebColor.h" | 34 #include "../platform/WebColor.h" |
| 35 #include "../platform/WebPageVisibilityState.h" |
| 35 #include "../platform/WebString.h" | 36 #include "../platform/WebString.h" |
| 36 #include "../platform/WebVector.h" | 37 #include "../platform/WebVector.h" |
| 37 #include "WebDragOperation.h" | 38 #include "WebDragOperation.h" |
| 38 #include "WebHistoryCommitType.h" | 39 #include "WebHistoryCommitType.h" |
| 39 #include "WebHistoryItem.h" | 40 #include "WebHistoryItem.h" |
| 40 #include "WebPageVisibilityState.h" | |
| 41 #include "WebWidget.h" | 41 #include "WebWidget.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class WebAXObject; | 45 class WebAXObject; |
| 46 class WebAutofillClient; | 46 class WebAutofillClient; |
| 47 class WebCredentialManagerClient; | 47 class WebCredentialManagerClient; |
| 48 class WebDevToolsAgent; | 48 class WebDevToolsAgent; |
| 49 class WebDevToolsAgentClient; | 49 class WebDevToolsAgentClient; |
| 50 class WebDragData; | 50 class WebDragData; |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 // event gets generated/tested. | 487 // event gets generated/tested. |
| 488 virtual void forceNextWebGLContextCreationToFail() = 0; | 488 virtual void forceNextWebGLContextCreationToFail() = 0; |
| 489 | 489 |
| 490 protected: | 490 protected: |
| 491 ~WebView() {} | 491 ~WebView() {} |
| 492 }; | 492 }; |
| 493 | 493 |
| 494 } // namespace blink | 494 } // namespace blink |
| 495 | 495 |
| 496 #endif | 496 #endif |
| OLD | NEW |