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