Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: Source/web/WebViewImpl.h

Issue 195053004: Create Pepper-based CDM for EME WD (Blink changes) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move provideMediaKeysTo() to MediaKeysController Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 static const WebInputEvent* m_currentInputEvent; 742 static const WebInputEvent* m_currentInputEvent;
742 743
743 #if ENABLE(INPUT_SPEECH) 744 #if ENABLE(INPUT_SPEECH)
744 OwnPtr<SpeechInputClientImpl> m_speechInputClient; 745 OwnPtr<SpeechInputClientImpl> m_speechInputClient;
745 #endif 746 #endif
746 OwnPtr<SpeechRecognitionClientProxy> m_speechRecognitionClient; 747 OwnPtr<SpeechRecognitionClientProxy> m_speechRecognitionClient;
747 748
748 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; 749 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy;
749 750
750 UserMediaClientImpl m_userMediaClientImpl; 751 UserMediaClientImpl m_userMediaClientImpl;
752 MediaKeysClientImpl m_mediaKeysClientImpl;
751 OwnPtr<MIDIClientProxy> m_midiClientProxy; 753 OwnPtr<MIDIClientProxy> m_midiClientProxy;
752 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient; 754 OwnPtr<NavigatorContentUtilsClientImpl> m_navigatorContentUtilsClient;
753 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation; 755 OwnPtr<WebActiveGestureAnimation> m_gestureAnimation;
754 WebPoint m_positionOnFlingStart; 756 WebPoint m_positionOnFlingStart;
755 WebPoint m_globalPositionOnFlingStart; 757 WebPoint m_globalPositionOnFlingStart;
756 int m_flingModifier; 758 int m_flingModifier;
757 bool m_flingSourceDevice; 759 bool m_flingSourceDevice;
758 Vector<OwnPtr<LinkHighlight> > m_linkHighlights; 760 Vector<OwnPtr<LinkHighlight> > m_linkHighlights;
759 OwnPtr<ValidationMessageClientImpl> m_validationMessage; 761 OwnPtr<ValidationMessageClientImpl> m_validationMessage;
760 OwnPtr<FullscreenController> m_fullscreenController; 762 OwnPtr<FullscreenController> m_fullscreenController;
761 763
762 bool m_showFPSCounter; 764 bool m_showFPSCounter;
763 bool m_showPaintRects; 765 bool m_showPaintRects;
764 bool m_showDebugBorders; 766 bool m_showDebugBorders;
765 bool m_continuousPaintingEnabled; 767 bool m_continuousPaintingEnabled;
766 bool m_showScrollBottleneckRects; 768 bool m_showScrollBottleneckRects;
767 WebColor m_baseBackgroundColor; 769 WebColor m_baseBackgroundColor;
768 WebColor m_backgroundColorOverride; 770 WebColor m_backgroundColorOverride;
769 float m_zoomFactorOverride; 771 float m_zoomFactorOverride;
770 }; 772 };
771 773
772 // We have no ways to check if the specified WebView is an instance of 774 // We have no ways to check if the specified WebView is an instance of
773 // WebViewImpl because WebViewImpl is the only implementation of WebView. 775 // WebViewImpl because WebViewImpl is the only implementation of WebView.
774 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 776 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
775 777
776 } // namespace blink 778 } // namespace blink
777 779
778 #endif 780 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698