| 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 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; | 735 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; |
| 736 | 736 |
| 737 UserMediaClientImpl m_userMediaClientImpl; | 737 UserMediaClientImpl m_userMediaClientImpl; |
| 738 MediaKeysClientImpl m_mediaKeysClientImpl; | 738 MediaKeysClientImpl m_mediaKeysClientImpl; |
| 739 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; | 739 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; |
| 740 WebPoint m_positionOnFlingStart; | 740 WebPoint m_positionOnFlingStart; |
| 741 WebPoint m_globalPositionOnFlingStart; | 741 WebPoint m_globalPositionOnFlingStart; |
| 742 int m_flingModifier; | 742 int m_flingModifier; |
| 743 bool m_flingSourceDevice; | 743 bool m_flingSourceDevice; |
| 744 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; | 744 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; |
| 745 OwnPtr<ValidationMessageClientImpl> m_validationMessage; | |
| 746 OwnPtr<FullscreenController> m_fullscreenController; | 745 OwnPtr<FullscreenController> m_fullscreenController; |
| 747 | 746 |
| 748 bool m_showFPSCounter; | 747 bool m_showFPSCounter; |
| 749 bool m_showPaintRects; | 748 bool m_showPaintRects; |
| 750 bool m_showDebugBorders; | 749 bool m_showDebugBorders; |
| 751 bool m_continuousPaintingEnabled; | 750 bool m_continuousPaintingEnabled; |
| 752 bool m_showScrollBottleneckRects; | 751 bool m_showScrollBottleneckRects; |
| 753 WebColor m_baseBackgroundColor; | 752 WebColor m_baseBackgroundColor; |
| 754 WebColor m_backgroundColorOverride; | 753 WebColor m_backgroundColorOverride; |
| 755 float m_zoomFactorOverride; | 754 float m_zoomFactorOverride; |
| 756 }; | 755 }; |
| 757 | 756 |
| 758 // We have no ways to check if the specified WebView is an instance of | 757 // We have no ways to check if the specified WebView is an instance of |
| 759 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 758 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 760 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 759 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 761 | 760 |
| 762 } // namespace blink | 761 } // namespace blink |
| 763 | 762 |
| 764 #endif | 763 #endif |
| OLD | NEW |