| 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 26 matching lines...) Expand all Loading... |
| 37 #include "../platform/WebPageVisibilityState.h" | 37 #include "../platform/WebPageVisibilityState.h" |
| 38 #include "../platform/WebString.h" | 38 #include "../platform/WebString.h" |
| 39 #include "../platform/WebVector.h" | 39 #include "../platform/WebVector.h" |
| 40 #include "WebDragOperation.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 CompositorProxyClient; |
| 47 class WebAXObject; | 48 class WebAXObject; |
| 48 class WebAutofillClient; | 49 class WebAutofillClient; |
| 49 class WebCompositedDisplayList; | 50 class WebCompositedDisplayList; |
| 50 class WebCredentialManagerClient; | 51 class WebCredentialManagerClient; |
| 51 class WebDragData; | 52 class WebDragData; |
| 52 class WebFrame; | 53 class WebFrame; |
| 53 class WebHitTestResult; | 54 class WebHitTestResult; |
| 54 class WebLocalFrame; | 55 class WebLocalFrame; |
| 55 class WebPageImportanceSignals; | 56 class WebPageImportanceSignals; |
| 56 class WebPageOverlay; | 57 class WebPageOverlay; |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 // Testing functionality for TestRunner --------------------------------- | 484 // Testing functionality for TestRunner --------------------------------- |
| 484 | 485 |
| 485 // Force the webgl context to fail so that webglcontextcreationerror | 486 // Force the webgl context to fail so that webglcontextcreationerror |
| 486 // event gets generated/tested. | 487 // event gets generated/tested. |
| 487 virtual void forceNextWebGLContextCreationToFail() = 0; | 488 virtual void forceNextWebGLContextCreationToFail() = 0; |
| 488 | 489 |
| 489 // Force the drawing buffer used by webgl contexts to fail so that the webgl | 490 // Force the drawing buffer used by webgl contexts to fail so that the webgl |
| 490 // context's ability to deal with that failure gracefully can be tested. | 491 // context's ability to deal with that failure gracefully can be tested. |
| 491 virtual void forceNextDrawingBufferCreationToFail() = 0; | 492 virtual void forceNextDrawingBufferCreationToFail() = 0; |
| 492 | 493 |
| 494 // CompositorWorker ----------------------------------------------------- |
| 495 |
| 496 // Initializes the compositor worker machinery and ensures that it is |
| 497 // plumbed to the compositor. |
| 498 virtual CompositorProxyClient* createCompositorProxyClient() = 0; |
| 499 |
| 493 protected: | 500 protected: |
| 494 ~WebView() {} | 501 ~WebView() {} |
| 495 }; | 502 }; |
| 496 | 503 |
| 497 } // namespace blink | 504 } // namespace blink |
| 498 | 505 |
| 499 #endif | 506 #endif |
| OLD | NEW |