OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 #include "WebURLError.h" | 54 #include "WebURLError.h" |
55 #include "WebVector.h" | 55 #include "WebVector.h" |
56 #include "WebWaitableEvent.h" | 56 #include "WebWaitableEvent.h" |
57 | 57 |
58 class GrContext; | 58 class GrContext; |
59 | 59 |
60 namespace blink { | 60 namespace blink { |
61 | 61 |
62 class WebAudioBus; | 62 class WebAudioBus; |
63 class WebBlobRegistry; | 63 class WebBlobRegistry; |
| 64 class WebCanvasCaptureHandler; |
64 class WebClipboard; | 65 class WebClipboard; |
65 class WebCompositorSupport; | 66 class WebCompositorSupport; |
66 class WebConvertableToTraceFormat; | 67 class WebConvertableToTraceFormat; |
67 class WebCookieJar; | 68 class WebCookieJar; |
68 class WebCrypto; | 69 class WebCrypto; |
69 class WebDatabaseObserver; | 70 class WebDatabaseObserver; |
70 class WebDiscardableMemory; | 71 class WebDiscardableMemory; |
71 class WebPlatformEventListener; | 72 class WebPlatformEventListener; |
72 class WebFallbackThemeEngine; | 73 class WebFallbackThemeEngine; |
73 class WebFileSystem; | 74 class WebFileSystem; |
74 class WebFileUtilities; | 75 class WebFileUtilities; |
75 class WebFlingAnimator; | 76 class WebFlingAnimator; |
76 class WebGeofencingProvider; | 77 class WebGeofencingProvider; |
77 class WebGestureCurve; | 78 class WebGestureCurve; |
78 class WebGraphicsContext3DProvider; | 79 class WebGraphicsContext3DProvider; |
79 class WebIDBFactory; | 80 class WebIDBFactory; |
80 class WebMIDIAccessor; | 81 class WebMIDIAccessor; |
81 class WebMIDIAccessorClient; | 82 class WebMIDIAccessorClient; |
82 class WebMediaRecorderHandler; | 83 class WebMediaRecorderHandler; |
| 84 class WebMediaStream; |
83 class WebMediaStreamCenter; | 85 class WebMediaStreamCenter; |
84 class WebMediaStreamCenterClient; | 86 class WebMediaStreamCenterClient; |
85 class WebMemoryDumpProvider; | 87 class WebMemoryDumpProvider; |
86 class WebMessagePortChannel; | 88 class WebMessagePortChannel; |
87 class WebMimeRegistry; | 89 class WebMimeRegistry; |
88 class WebNavigatorConnectProvider; | 90 class WebNavigatorConnectProvider; |
89 class WebNotificationManager; | 91 class WebNotificationManager; |
90 class WebPermissionClient; | 92 class WebPermissionClient; |
91 class WebPluginListBuilder; | 93 class WebPluginListBuilder; |
92 class WebPrescientNetworking; | 94 class WebPrescientNetworking; |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 // Creates an WebMediaRecorderHandler to record MediaStreams. | 624 // Creates an WebMediaRecorderHandler to record MediaStreams. |
623 // May return null if the functionality is not available or out of resources
. | 625 // May return null if the functionality is not available or out of resources
. |
624 virtual WebMediaRecorderHandler* createMediaRecorderHandler() { return nullp
tr; } | 626 virtual WebMediaRecorderHandler* createMediaRecorderHandler() { return nullp
tr; } |
625 | 627 |
626 // May return null if WebRTC functionality is not avaliable or out of resour
ces. | 628 // May return null if WebRTC functionality is not avaliable or out of resour
ces. |
627 virtual WebRTCCertificateGenerator* createRTCCertificateGenerator() { return
nullptr; } | 629 virtual WebRTCCertificateGenerator* createRTCCertificateGenerator() { return
nullptr; } |
628 | 630 |
629 // May return null if WebRTC functionality is not avaliable or out of resour
ces. | 631 // May return null if WebRTC functionality is not avaliable or out of resour
ces. |
630 virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterCl
ient*) { return nullptr; } | 632 virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterCl
ient*) { return nullptr; } |
631 | 633 |
| 634 // Creates an WebCanvasCaptureHandler to capture Canvas output. |
| 635 virtual WebCanvasCaptureHandler* createCanvasCaptureHandler(const WebSize& s
ize, WebMediaStream* stream) { return nullptr; } |
632 // WebWorker ---------------------------------------------------------- | 636 // WebWorker ---------------------------------------------------------- |
633 | 637 |
634 virtual void didStartWorkerRunLoop() { } | 638 virtual void didStartWorkerRunLoop() { } |
635 virtual void didStopWorkerRunLoop() { } | 639 virtual void didStopWorkerRunLoop() { } |
636 | 640 |
637 // WebCrypto ---------------------------------------------------------- | 641 // WebCrypto ---------------------------------------------------------- |
638 | 642 |
639 virtual WebCrypto* crypto() { return nullptr; } | 643 virtual WebCrypto* crypto() { return nullptr; } |
640 | 644 |
641 | 645 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 protected: | 732 protected: |
729 BLINK_PLATFORM_EXPORT Platform(); | 733 BLINK_PLATFORM_EXPORT Platform(); |
730 virtual ~Platform() { } | 734 virtual ~Platform() { } |
731 | 735 |
732 WebThread* m_mainThread; | 736 WebThread* m_mainThread; |
733 }; | 737 }; |
734 | 738 |
735 } // namespace blink | 739 } // namespace blink |
736 | 740 |
737 #endif | 741 #endif |
OLD | NEW |