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

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

Issue 18325007: Web MIDI: introduce WebMIDIClient API to request a permission (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address chris' review Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/WebMIDIPermissionRequest.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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
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
OLDNEW
« no previous file with comments | « Source/web/WebMIDIPermissionRequest.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698