| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #ifndef WebViewImpl_h | 31 #ifndef WebViewImpl_h |
| 32 #define WebViewImpl_h | 32 #define WebViewImpl_h |
| 33 | 33 |
| 34 #include "BackForwardClientImpl.h" | 34 #include "BackForwardClientImpl.h" |
| 35 #include "ChromeClientImpl.h" | 35 #include "ChromeClientImpl.h" |
| 36 #include "ContextMenuClientImpl.h" | 36 #include "ContextMenuClientImpl.h" |
| 37 #include "DragClientImpl.h" | 37 #include "DragClientImpl.h" |
| 38 #include "EditorClientImpl.h" | 38 #include "EditorClientImpl.h" |
| 39 #include "InspectorClientImpl.h" | 39 #include "InspectorClientImpl.h" |
| 40 #include "MIDIClientImpl.h" |
| 40 #include "NotificationPresenterImpl.h" | 41 #include "NotificationPresenterImpl.h" |
| 41 #include "PageOverlayList.h" | 42 #include "PageOverlayList.h" |
| 42 #include "PageWidgetDelegate.h" | 43 #include "PageWidgetDelegate.h" |
| 43 #include "UserMediaClientImpl.h" | 44 #include "UserMediaClientImpl.h" |
| 44 #include "WebInputEvent.h" | 45 #include "WebInputEvent.h" |
| 45 #include "WebNavigationPolicy.h" | 46 #include "WebNavigationPolicy.h" |
| 46 #include "WebView.h" | 47 #include "WebView.h" |
| 47 #include "WebViewBenchmarkSupportImpl.h" | 48 #include "WebViewBenchmarkSupportImpl.h" |
| 48 #include "core/page/PagePopupDriver.h" | 49 #include "core/page/PagePopupDriver.h" |
| 49 #include "core/page/PageScaleConstraintsSet.h" | 50 #include "core/page/PageScaleConstraintsSet.h" |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 OwnPtr<SpeechInputClientImpl> m_speechInputClient; | 808 OwnPtr<SpeechInputClientImpl> m_speechInputClient; |
| 808 #endif | 809 #endif |
| 809 OwnPtr<SpeechRecognitionClientProxy> m_speechRecognitionClient; | 810 OwnPtr<SpeechRecognitionClientProxy> m_speechRecognitionClient; |
| 810 | 811 |
| 811 OwnPtr<DeviceOrientationClientProxy> m_deviceOrientationClientProxy; | 812 OwnPtr<DeviceOrientationClientProxy> m_deviceOrientationClientProxy; |
| 812 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; | 813 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; |
| 813 | 814 |
| 814 float m_emulatedTextZoomFactor; | 815 float m_emulatedTextZoomFactor; |
| 815 | 816 |
| 816 UserMediaClientImpl m_userMediaClientImpl; | 817 UserMediaClientImpl m_userMediaClientImpl; |
| 818 MIDIClientImpl m_midiClientImpl; |
| 817 #if ENABLE(NAVIGATOR_CONTENT_UTILS) | 819 #if ENABLE(NAVIGATOR_CONTENT_UTILS) |
| 818 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient; | 820 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient; |
| 819 #endif | 821 #endif |
| 820 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; | 822 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; |
| 821 WebPoint m_positionOnFlingStart; | 823 WebPoint m_positionOnFlingStart; |
| 822 WebPoint m_globalPositionOnFlingStart; | 824 WebPoint m_globalPositionOnFlingStart; |
| 823 int m_flingModifier; | 825 int m_flingModifier; |
| 824 bool m_flingSourceDevice; | 826 bool m_flingSourceDevice; |
| 825 OwnPtr<LinkHighlight> m_linkHighlight; | 827 OwnPtr<LinkHighlight> m_linkHighlight; |
| 826 OwnPtr<ValidationMessageClientImpl> m_validationMessage; | 828 OwnPtr<ValidationMessageClientImpl> m_validationMessage; |
| 827 | 829 |
| 828 bool m_showFPSCounter; | 830 bool m_showFPSCounter; |
| 829 bool m_showPaintRects; | 831 bool m_showPaintRects; |
| 830 bool m_showDebugBorders; | 832 bool m_showDebugBorders; |
| 831 bool m_continuousPaintingEnabled; | 833 bool m_continuousPaintingEnabled; |
| 832 bool m_showScrollBottleneckRects; | 834 bool m_showScrollBottleneckRects; |
| 833 }; | 835 }; |
| 834 | 836 |
| 835 } // namespace WebKit | 837 } // namespace WebKit |
| 836 | 838 |
| 837 #endif | 839 #endif |
| OLD | NEW |