| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 namespace blink { | 82 namespace blink { |
| 83 class AutocompletePopupMenuClient; | 83 class AutocompletePopupMenuClient; |
| 84 class ContextFeaturesClientImpl; | 84 class ContextFeaturesClientImpl; |
| 85 class ContextMenuClientImpl; | 85 class ContextMenuClientImpl; |
| 86 class GeolocationClientProxy; | 86 class GeolocationClientProxy; |
| 87 class LinkHighlight; | 87 class LinkHighlight; |
| 88 class MIDIClientProxy; | 88 class MIDIClientProxy; |
| 89 class PinchViewports; | 89 class PinchViewports; |
| 90 class PrerendererClientImpl; | 90 class PrerendererClientImpl; |
| 91 class ScreenOrientationClientProxy; |
| 91 class SpeechInputClientImpl; | 92 class SpeechInputClientImpl; |
| 92 class SpeechRecognitionClientProxy; | 93 class SpeechRecognitionClientProxy; |
| 93 class UserMediaClientImpl; | 94 class UserMediaClientImpl; |
| 94 class ValidationMessageClientImpl; | 95 class ValidationMessageClientImpl; |
| 95 class WebAXObject; | 96 class WebAXObject; |
| 96 class WebActiveGestureAnimation; | 97 class WebActiveGestureAnimation; |
| 97 class WebDevToolsAgentClient; | 98 class WebDevToolsAgentClient; |
| 98 class WebDevToolsAgentPrivate; | 99 class WebDevToolsAgentPrivate; |
| 99 class WebDocument; | 100 class WebDocument; |
| 100 class WebFrameImpl; | 101 class WebFrameImpl; |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 bool m_recreatingGraphicsContext; | 751 bool m_recreatingGraphicsContext; |
| 751 static const WebInputEvent* m_currentInputEvent; | 752 static const WebInputEvent* m_currentInputEvent; |
| 752 OwnPtr<PinchViewports> m_pinchViewports; | 753 OwnPtr<PinchViewports> m_pinchViewports; |
| 753 | 754 |
| 754 #if ENABLE(INPUT_SPEECH) | 755 #if ENABLE(INPUT_SPEECH) |
| 755 OwnPtr<SpeechInputClientImpl> m_speechInputClient; | 756 OwnPtr<SpeechInputClientImpl> m_speechInputClient; |
| 756 #endif | 757 #endif |
| 757 OwnPtr<SpeechRecognitionClientProxy> m_speechRecognitionClient; | 758 OwnPtr<SpeechRecognitionClientProxy> m_speechRecognitionClient; |
| 758 | 759 |
| 759 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; | 760 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; |
| 761 OwnPtr<ScreenOrientationClientProxy> m_screenOrientationClientProxy; |
| 760 | 762 |
| 761 UserMediaClientImpl m_userMediaClientImpl; | 763 UserMediaClientImpl m_userMediaClientImpl; |
| 762 OwnPtr<MIDIClientProxy> m_midiClientProxy; | 764 OwnPtr<MIDIClientProxy> m_midiClientProxy; |
| 763 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient; | 765 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient; |
| 764 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; | 766 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; |
| 765 WebPoint m_positionOnFlingStart; | 767 WebPoint m_positionOnFlingStart; |
| 766 WebPoint m_globalPositionOnFlingStart; | 768 WebPoint m_globalPositionOnFlingStart; |
| 767 int m_flingModifier; | 769 int m_flingModifier; |
| 768 bool m_flingSourceDevice; | 770 bool m_flingSourceDevice; |
| 769 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; | 771 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 783 Vector<WebHelperPluginImpl*> m_helperPluginsPendingClose; | 785 Vector<WebHelperPluginImpl*> m_helperPluginsPendingClose; |
| 784 }; | 786 }; |
| 785 | 787 |
| 786 // We have no ways to check if the specified WebView is an instance of | 788 // We have no ways to check if the specified WebView is an instance of |
| 787 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 789 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 788 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 790 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 789 | 791 |
| 790 } // namespace blink | 792 } // namespace blink |
| 791 | 793 |
| 792 #endif | 794 #endif |
| OLD | NEW |