| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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; |
| 51 class WebFrame; | 51 class WebFrame; |
| 52 class WebFrameClient; | |
| 53 class WebGraphicsContext3D; | |
| 54 class WebHitTestResult; | 52 class WebHitTestResult; |
| 55 class WebNode; | |
| 56 class WebPageOverlay; | 53 class WebPageOverlay; |
| 57 class WebPrerendererClient; | 54 class WebPrerendererClient; |
| 58 class WebRange; | |
| 59 class WebSettings; | 55 class WebSettings; |
| 60 class WebSpellCheckClient; | 56 class WebSpellCheckClient; |
| 61 class WebString; | 57 class WebString; |
| 62 class WebViewClient; | 58 class WebViewClient; |
| 63 struct WebActiveWheelFlingParameters; | 59 struct WebActiveWheelFlingParameters; |
| 64 struct WebMediaPlayerAction; | 60 struct WebMediaPlayerAction; |
| 65 struct WebPluginAction; | 61 struct WebPluginAction; |
| 66 struct WebPoint; | 62 struct WebPoint; |
| 67 struct WebFloatPoint; | 63 struct WebFloatPoint; |
| 68 struct WebWindowFeatures; | 64 struct WebWindowFeatures; |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 // event gets generated/tested. | 494 // event gets generated/tested. |
| 499 virtual void forceNextWebGLContextCreationToFail() = 0; | 495 virtual void forceNextWebGLContextCreationToFail() = 0; |
| 500 | 496 |
| 501 protected: | 497 protected: |
| 502 ~WebView() {} | 498 ~WebView() {} |
| 503 }; | 499 }; |
| 504 | 500 |
| 505 } // namespace blink | 501 } // namespace blink |
| 506 | 502 |
| 507 #endif | 503 #endif |
| OLD | NEW |