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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 // Testing functionality for TestRunner --------------------------------- | 481 // Testing functionality for TestRunner --------------------------------- |
481 | 482 |
482 // Force the webgl context to fail so that webglcontextcreationerror | 483 // Force the webgl context to fail so that webglcontextcreationerror |
483 // event gets generated/tested. | 484 // event gets generated/tested. |
484 virtual void forceNextWebGLContextCreationToFail() = 0; | 485 virtual void forceNextWebGLContextCreationToFail() = 0; |
485 | 486 |
486 // Force the drawing buffer used by webgl contexts to fail so that the webgl | 487 // Force the drawing buffer used by webgl contexts to fail so that the webgl |
487 // context's ability to deal with that failure gracefully can be tested. | 488 // context's ability to deal with that failure gracefully can be tested. |
488 virtual void forceNextDrawingBufferCreationToFail() = 0; | 489 virtual void forceNextDrawingBufferCreationToFail() = 0; |
489 | 490 |
| 491 // CompositorWorker ----------------------------------------------------- |
| 492 |
| 493 // Initializes the compositor worker machinery and ensures that it is |
| 494 // plumbed to the compositor. |
| 495 virtual CompositorProxyClient* createCompositorProxyClient() = 0; |
| 496 |
490 protected: | 497 protected: |
491 ~WebView() {} | 498 ~WebView() {} |
492 }; | 499 }; |
493 | 500 |
494 } // namespace blink | 501 } // namespace blink |
495 | 502 |
496 #endif | 503 #endif |
OLD | NEW |