| 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 15 matching lines...) Expand all Loading... |
| 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/WebDisplayMode.h" | 35 #include "../platform/WebDisplayMode.h" |
| 36 #include "../platform/WebDragOperation.h" |
| 36 #include "../platform/WebFocusType.h" | 37 #include "../platform/WebFocusType.h" |
| 37 #include "../platform/WebPageVisibilityState.h" | 38 #include "../platform/WebPageVisibilityState.h" |
| 38 #include "../platform/WebString.h" | 39 #include "../platform/WebString.h" |
| 39 #include "../platform/WebVector.h" | 40 #include "../platform/WebVector.h" |
| 40 #include "WebDragOperation.h" | |
| 41 #include "WebHistoryCommitType.h" | 41 #include "WebHistoryCommitType.h" |
| 42 #include "WebHistoryItem.h" | 42 #include "WebHistoryItem.h" |
| 43 #include "WebWidget.h" | 43 #include "WebWidget.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class WebAXObject; | 47 class WebAXObject; |
| 48 class WebAutofillClient; | 48 class WebAutofillClient; |
| 49 class WebCompositedDisplayList; | 49 class WebCompositedDisplayList; |
| 50 class WebCredentialManagerClient; | 50 class WebCredentialManagerClient; |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 // context's ability to deal with that failure gracefully can be tested. | 480 // context's ability to deal with that failure gracefully can be tested. |
| 481 virtual void forceNextDrawingBufferCreationToFail() = 0; | 481 virtual void forceNextDrawingBufferCreationToFail() = 0; |
| 482 | 482 |
| 483 protected: | 483 protected: |
| 484 ~WebView() {} | 484 ~WebView() {} |
| 485 }; | 485 }; |
| 486 | 486 |
| 487 } // namespace blink | 487 } // namespace blink |
| 488 | 488 |
| 489 #endif | 489 #endif |
| OLD | NEW |