| 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 RefPtr<WebCore::UserGestureToken> m_mouseCaptureGestureToken; | 676 RefPtr<WebCore::UserGestureToken> m_mouseCaptureGestureToken; |
| 677 | 677 |
| 678 WebCore::IntRect m_rootLayerScrollDamage; | 678 WebCore::IntRect m_rootLayerScrollDamage; |
| 679 WebLayerTreeView* m_layerTreeView; | 679 WebLayerTreeView* m_layerTreeView; |
| 680 WebLayer* m_rootLayer; | 680 WebLayer* m_rootLayer; |
| 681 WebCore::GraphicsLayer* m_rootGraphicsLayer; | 681 WebCore::GraphicsLayer* m_rootGraphicsLayer; |
| 682 WebCore::GraphicsLayer* m_rootTransformLayer; | 682 WebCore::GraphicsLayer* m_rootTransformLayer; |
| 683 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; | 683 OwnPtr<WebCore::GraphicsLayerFactory> m_graphicsLayerFactory; |
| 684 bool m_isAcceleratedCompositingActive; | 684 bool m_isAcceleratedCompositingActive; |
| 685 bool m_layerTreeViewCommitsDeferred; | 685 bool m_layerTreeViewCommitsDeferred; |
| 686 bool m_layerTreeViewClosed; |
| 686 bool m_matchesHeuristicsForGpuRasterization; | 687 bool m_matchesHeuristicsForGpuRasterization; |
| 687 // If true, the graphics context is being restored. | 688 // If true, the graphics context is being restored. |
| 688 bool m_recreatingGraphicsContext; | 689 bool m_recreatingGraphicsContext; |
| 689 static const WebInputEvent* m_currentInputEvent; | 690 static const WebInputEvent* m_currentInputEvent; |
| 690 | 691 |
| 691 MediaKeysClientImpl m_mediaKeysClientImpl; | 692 MediaKeysClientImpl m_mediaKeysClientImpl; |
| 692 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; | 693 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; |
| 693 WebPoint m_positionOnFlingStart; | 694 WebPoint m_positionOnFlingStart; |
| 694 WebPoint m_globalPositionOnFlingStart; | 695 WebPoint m_globalPositionOnFlingStart; |
| 695 int m_flingModifier; | 696 int m_flingModifier; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 709 bool m_userGestureObserved; | 710 bool m_userGestureObserved; |
| 710 }; | 711 }; |
| 711 | 712 |
| 712 // We have no ways to check if the specified WebView is an instance of | 713 // We have no ways to check if the specified WebView is an instance of |
| 713 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 714 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 714 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 715 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 715 | 716 |
| 716 } // namespace blink | 717 } // namespace blink |
| 717 | 718 |
| 718 #endif | 719 #endif |
| OLD | NEW |