Chromium Code Reviews| 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 "MediaKeysClientImpl.h" | |
| 40 #include "NotificationPresenterImpl.h" | 41 #include "NotificationPresenterImpl.h" |
| 41 #include "PageOverlayList.h" | 42 #include "PageOverlayList.h" |
| 42 #include "PageScaleConstraintsSet.h" | 43 #include "PageScaleConstraintsSet.h" |
| 43 #include "PageWidgetDelegate.h" | 44 #include "PageWidgetDelegate.h" |
| 44 #include "SpellCheckerClientImpl.h" | 45 #include "SpellCheckerClientImpl.h" |
| 45 #include "StorageClientImpl.h" | 46 #include "StorageClientImpl.h" |
| 46 #include "UserMediaClientImpl.h" | 47 #include "UserMediaClientImpl.h" |
| 47 #include "WebInputEvent.h" | 48 #include "WebInputEvent.h" |
| 48 #include "WebNavigationPolicy.h" | 49 #include "WebNavigationPolicy.h" |
| 49 #include "WebView.h" | 50 #include "WebView.h" |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 752 OwnPtr<MIDIClientProxy> m_midiClientProxy; | 753 OwnPtr<MIDIClientProxy> m_midiClientProxy; |
| 753 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient; | 754 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient; |
| 754 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; | 755 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; |
| 755 WebPoint m_positionOnFlingStart; | 756 WebPoint m_positionOnFlingStart; |
| 756 WebPoint m_globalPositionOnFlingStart; | 757 WebPoint m_globalPositionOnFlingStart; |
| 757 int m_flingModifier; | 758 int m_flingModifier; |
| 758 bool m_flingSourceDevice; | 759 bool m_flingSourceDevice; |
| 759 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; | 760 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; |
| 760 OwnPtr<ValidationMessageClientImpl> m_validationMessage; | 761 OwnPtr<ValidationMessageClientImpl> m_validationMessage; |
| 761 OwnPtr<FullscreenController> m_fullscreenController; | 762 OwnPtr<FullscreenController> m_fullscreenController; |
| 763 OwnPtr<MediaKeysClientImpl> m_mediaKeysClientImpl; | |
|
ddorwin
2014/03/12 01:01:09
Should we maybe group this with other media ones a
jrummell
2014/03/17 20:48:37
Done.
| |
| 762 | 764 |
| 763 bool m_showFPSCounter; | 765 bool m_showFPSCounter; |
| 764 bool m_showPaintRects; | 766 bool m_showPaintRects; |
| 765 bool m_showDebugBorders; | 767 bool m_showDebugBorders; |
| 766 bool m_continuousPaintingEnabled; | 768 bool m_continuousPaintingEnabled; |
| 767 bool m_showScrollBottleneckRects; | 769 bool m_showScrollBottleneckRects; |
| 768 WebColor m_baseBackgroundColor; | 770 WebColor m_baseBackgroundColor; |
| 769 WebColor m_backgroundColorOverride; | 771 WebColor m_backgroundColorOverride; |
| 770 float m_zoomFactorOverride; | 772 float m_zoomFactorOverride; |
| 771 }; | 773 }; |
| 772 | 774 |
| 773 // We have no ways to check if the specified WebView is an instance of | 775 // We have no ways to check if the specified WebView is an instance of |
| 774 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 776 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 775 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 777 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 776 | 778 |
| 777 } // namespace blink | 779 } // namespace blink |
| 778 | 780 |
| 779 #endif | 781 #endif |
| OLD | NEW |