| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 namespace WebKit { | 89 namespace WebKit { |
| 90 class AutocompletePopupMenuClient; | 90 class AutocompletePopupMenuClient; |
| 91 class AutofillPopupMenuClient; | 91 class AutofillPopupMenuClient; |
| 92 class BatteryClientImpl; | 92 class BatteryClientImpl; |
| 93 class ContextFeaturesClientImpl; | 93 class ContextFeaturesClientImpl; |
| 94 class ContextMenuClientImpl; | 94 class ContextMenuClientImpl; |
| 95 class DeviceOrientationClientProxy; | 95 class DeviceOrientationClientProxy; |
| 96 class GeolocationClientProxy; | 96 class GeolocationClientProxy; |
| 97 class LinkHighlight; | 97 class LinkHighlight; |
| 98 class NonCompositedContentHost; | |
| 99 class PrerendererClientImpl; | 98 class PrerendererClientImpl; |
| 100 class SpeechInputClientImpl; | 99 class SpeechInputClientImpl; |
| 101 class SpeechRecognitionClientProxy; | 100 class SpeechRecognitionClientProxy; |
| 102 class UserMediaClientImpl; | 101 class UserMediaClientImpl; |
| 103 class ValidationMessageClientImpl; | 102 class ValidationMessageClientImpl; |
| 104 class WebAccessibilityObject; | 103 class WebAccessibilityObject; |
| 105 class WebActiveGestureAnimation; | 104 class WebActiveGestureAnimation; |
| 106 class WebCompositorImpl; | 105 class WebCompositorImpl; |
| 107 class WebDevToolsAgentClient; | 106 class WebDevToolsAgentClient; |
| 108 class WebDevToolsAgentPrivate; | 107 class WebDevToolsAgentPrivate; |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 static const WebInputEvent* currentInputEvent() | 512 static const WebInputEvent* currentInputEvent() |
| 514 { | 513 { |
| 515 return m_currentInputEvent; | 514 return m_currentInputEvent; |
| 516 } | 515 } |
| 517 | 516 |
| 518 WebCore::GraphicsLayer* rootGraphicsLayer(); | 517 WebCore::GraphicsLayer* rootGraphicsLayer(); |
| 519 bool allowsAcceleratedCompositing(); | 518 bool allowsAcceleratedCompositing(); |
| 520 void setRootGraphicsLayer(WebCore::GraphicsLayer*); | 519 void setRootGraphicsLayer(WebCore::GraphicsLayer*); |
| 521 void scheduleCompositingLayerSync(); | 520 void scheduleCompositingLayerSync(); |
| 522 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore:
:IntRect& clipRect); | 521 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore:
:IntRect& clipRect); |
| 523 void paintRootLayer(WebCore::GraphicsContext&, const WebCore::IntRect& conte
ntRect); | |
| 524 NonCompositedContentHost* nonCompositedContentHost(); | |
| 525 void setBackgroundColor(const WebCore::Color&); | |
| 526 WebCore::GraphicsLayerFactory* graphicsLayerFactory() const; | 522 WebCore::GraphicsLayerFactory* graphicsLayerFactory() const; |
| 527 void registerForAnimations(WebLayer*); | 523 void registerForAnimations(WebLayer*); |
| 528 void scheduleAnimation(); | 524 void scheduleAnimation(); |
| 529 | 525 |
| 530 void didProgrammaticallyScroll(const WebCore::IntPoint& scrollPoint); | 526 void didProgrammaticallyScroll(const WebCore::IntPoint& scrollPoint); |
| 531 | 527 |
| 532 virtual void setVisibilityState(WebPageVisibilityState, bool); | 528 virtual void setVisibilityState(WebPageVisibilityState, bool); |
| 533 | 529 |
| 534 WebCore::PopupContainer* selectPopup() const { return m_selectPopup.get(); } | 530 WebCore::PopupContainer* selectPopup() const { return m_selectPopup.get(); } |
| 535 bool hasOpenedPopup() const { return m_selectPopup || m_pagePopup; } | 531 bool hasOpenedPopup() const { return m_selectPopup || m_pagePopup; } |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 // If set, the WebView is transitioning to fullscreen for this element. | 799 // If set, the WebView is transitioning to fullscreen for this element. |
| 804 RefPtr<WebCore::Element> m_provisionalFullScreenElement; | 800 RefPtr<WebCore::Element> m_provisionalFullScreenElement; |
| 805 | 801 |
| 806 // If set, the WebView is in fullscreen mode for an element in this frame. | 802 // If set, the WebView is in fullscreen mode for an element in this frame. |
| 807 RefPtr<WebCore::Frame> m_fullScreenFrame; | 803 RefPtr<WebCore::Frame> m_fullScreenFrame; |
| 808 bool m_isCancelingFullScreen; | 804 bool m_isCancelingFullScreen; |
| 809 | 805 |
| 810 WebViewBenchmarkSupportImpl m_benchmarkSupport; | 806 WebViewBenchmarkSupportImpl m_benchmarkSupport; |
| 811 | 807 |
| 812 WebCore::IntRect m_rootLayerScrollDamage; | 808 WebCore::IntRect m_rootLayerScrollDamage; |
| 813 OwnPtr<NonCompositedContentHost> m_nonCompositedContentHost; | |
| 814 WebLayerTreeView* m_layerTreeView; | 809 WebLayerTreeView* m_layerTreeView; |
| 815 WebLayer* m_rootLayer; | 810 WebLayer* m_rootLayer; |
| 816 WebCore::GraphicsLayer* m_rootGraphicsLayer; | 811 WebCore::GraphicsLayer* m_rootGraphicsLayer; |
| 817 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; | 812 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; |
| 818 bool m_isAcceleratedCompositingActive; | 813 bool m_isAcceleratedCompositingActive; |
| 819 bool m_layerTreeViewCommitsDeferred; | 814 bool m_layerTreeViewCommitsDeferred; |
| 820 bool m_compositorCreationFailed; | 815 bool m_compositorCreationFailed; |
| 821 // If true, the graphics context is being restored. | 816 // If true, the graphics context is being restored. |
| 822 bool m_recreatingGraphicsContext; | 817 bool m_recreatingGraphicsContext; |
| 823 int m_inputHandlerIdentifier; | 818 int m_inputHandlerIdentifier; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 850 | 845 |
| 851 bool m_showFPSCounter; | 846 bool m_showFPSCounter; |
| 852 bool m_showPaintRects; | 847 bool m_showPaintRects; |
| 853 bool m_showDebugBorders; | 848 bool m_showDebugBorders; |
| 854 bool m_continuousPaintingEnabled; | 849 bool m_continuousPaintingEnabled; |
| 855 }; | 850 }; |
| 856 | 851 |
| 857 } // namespace WebKit | 852 } // namespace WebKit |
| 858 | 853 |
| 859 #endif | 854 #endif |
| OLD | NEW |