| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 class PrerendererClientImpl; | 98 class PrerendererClientImpl; |
| 99 class SpeechInputClientImpl; | 99 class SpeechInputClientImpl; |
| 100 class SpeechRecognitionClientProxy; | 100 class SpeechRecognitionClientProxy; |
| 101 class UserMediaClientImpl; | 101 class UserMediaClientImpl; |
| 102 class ValidationMessageClientImpl; | 102 class ValidationMessageClientImpl; |
| 103 class WebAccessibilityObject; | 103 class WebAccessibilityObject; |
| 104 class WebActiveGestureAnimation; | 104 class WebActiveGestureAnimation; |
| 105 class WebCompositorImpl; | 105 class WebCompositorImpl; |
| 106 class WebDevToolsAgentClient; | 106 class WebDevToolsAgentClient; |
| 107 class WebDevToolsAgentPrivate; | 107 class WebDevToolsAgentPrivate; |
| 108 class WebDocument; |
| 108 class WebFrameImpl; | 109 class WebFrameImpl; |
| 109 class WebGestureEvent; | 110 class WebGestureEvent; |
| 110 class WebHelperPluginImpl; | 111 class WebHelperPluginImpl; |
| 111 class WebImage; | 112 class WebImage; |
| 112 class WebKeyboardEvent; | 113 class WebKeyboardEvent; |
| 113 class WebLayerTreeView; | 114 class WebLayerTreeView; |
| 114 class WebMouseEvent; | 115 class WebMouseEvent; |
| 115 class WebMouseWheelEvent; | 116 class WebMouseWheelEvent; |
| 116 class WebPagePopupImpl; | 117 class WebPagePopupImpl; |
| 117 class WebPrerendererClient; | 118 class WebPrerendererClient; |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 void popupOpened(WebCore::PopupContainer* popupContainer); | 523 void popupOpened(WebCore::PopupContainer* popupContainer); |
| 523 void popupClosed(WebCore::PopupContainer* popupContainer); | 524 void popupClosed(WebCore::PopupContainer* popupContainer); |
| 524 #if ENABLE(PAGE_POPUP) | 525 #if ENABLE(PAGE_POPUP) |
| 525 // PagePopupDriver functions. | 526 // PagePopupDriver functions. |
| 526 virtual WebCore::PagePopup* openPagePopup(WebCore::PagePopupClient*, const W
ebCore::IntRect& originBoundsInRootView) OVERRIDE; | 527 virtual WebCore::PagePopup* openPagePopup(WebCore::PagePopupClient*, const W
ebCore::IntRect& originBoundsInRootView) OVERRIDE; |
| 527 virtual void closePagePopup(WebCore::PagePopup*) OVERRIDE; | 528 virtual void closePagePopup(WebCore::PagePopup*) OVERRIDE; |
| 528 #endif | 529 #endif |
| 529 | 530 |
| 530 void hideAutofillPopup(); | 531 void hideAutofillPopup(); |
| 531 | 532 |
| 532 WebHelperPluginImpl* createHelperPlugin(const String& pluginType); | 533 // Creates a Helper Plugin of |pluginType| for |hostDocument|. |
| 534 WebHelperPluginImpl* createHelperPlugin(const String& pluginType, const WebD
ocument& hostDocument); |
| 533 | 535 |
| 534 // Returns the input event we're currently processing. This is used in some | 536 // Returns the input event we're currently processing. This is used in some |
| 535 // cases where the WebCore DOM event doesn't have the information we need. | 537 // cases where the WebCore DOM event doesn't have the information we need. |
| 536 static const WebInputEvent* currentInputEvent() | 538 static const WebInputEvent* currentInputEvent() |
| 537 { | 539 { |
| 538 return m_currentInputEvent; | 540 return m_currentInputEvent; |
| 539 } | 541 } |
| 540 | 542 |
| 541 WebCore::GraphicsLayer* rootGraphicsLayer(); | 543 WebCore::GraphicsLayer* rootGraphicsLayer(); |
| 542 #if USE(ACCELERATED_COMPOSITING) | 544 #if USE(ACCELERATED_COMPOSITING) |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 | 908 |
| 907 bool m_showFPSCounter; | 909 bool m_showFPSCounter; |
| 908 bool m_showPaintRects; | 910 bool m_showPaintRects; |
| 909 bool m_showDebugBorders; | 911 bool m_showDebugBorders; |
| 910 bool m_continuousPaintingEnabled; | 912 bool m_continuousPaintingEnabled; |
| 911 }; | 913 }; |
| 912 | 914 |
| 913 } // namespace WebKit | 915 } // namespace WebKit |
| 914 | 916 |
| 915 #endif | 917 #endif |
| OLD | NEW |