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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 // Creates an WebMediaRecorderHandler to record MediaStreams. | 633 // Creates an WebMediaRecorderHandler to record MediaStreams. |
632 // May return null if the functionality is not available or out of resources
. | 634 // May return null if the functionality is not available or out of resources
. |
633 virtual WebMediaRecorderHandler* createMediaRecorderHandler() { return nullp
tr; } | 635 virtual WebMediaRecorderHandler* createMediaRecorderHandler() { return nullp
tr; } |
634 | 636 |
635 // May return null if WebRTC functionality is not avaliable or out of resour
ces. | 637 // May return null if WebRTC functionality is not avaliable or out of resour
ces. |
636 virtual WebRTCCertificateGenerator* createRTCCertificateGenerator() { return
nullptr; } | 638 virtual WebRTCCertificateGenerator* createRTCCertificateGenerator() { return
nullptr; } |
637 | 639 |
638 // May return null if WebRTC functionality is not avaliable or out of resour
ces. | 640 // May return null if WebRTC functionality is not avaliable or out of resour
ces. |
639 virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterCl
ient*) { return nullptr; } | 641 virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterCl
ient*) { return nullptr; } |
640 | 642 |
| 643 // Creates an WebCanvasCaptureHandler to capture Canvas output. |
| 644 virtual WebCanvasCaptureHandler* createCanvasCaptureHandler(const WebSize& s
ize, WebMediaStream* stream) { return nullptr; } |
641 // WebWorker ---------------------------------------------------------- | 645 // WebWorker ---------------------------------------------------------- |
642 | 646 |
643 virtual void didStartWorkerRunLoop() { } | 647 virtual void didStartWorkerRunLoop() { } |
644 virtual void didStopWorkerRunLoop() { } | 648 virtual void didStopWorkerRunLoop() { } |
645 | 649 |
646 // WebCrypto ---------------------------------------------------------- | 650 // WebCrypto ---------------------------------------------------------- |
647 | 651 |
648 virtual WebCrypto* crypto() { return nullptr; } | 652 virtual WebCrypto* crypto() { return nullptr; } |
649 | 653 |
650 | 654 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 protected: | 741 protected: |
738 BLINK_PLATFORM_EXPORT Platform(); | 742 BLINK_PLATFORM_EXPORT Platform(); |
739 virtual ~Platform() { } | 743 virtual ~Platform() { } |
740 | 744 |
741 WebThread* m_mainThread; | 745 WebThread* m_mainThread; |
742 }; | 746 }; |
743 | 747 |
744 } // namespace blink | 748 } // namespace blink |
745 | 749 |
746 #endif | 750 #endif |
OLD | NEW |