| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 class WebFallbackThemeEngine; | 75 class WebFallbackThemeEngine; |
| 76 class WebFileSystem; | 76 class WebFileSystem; |
| 77 class WebFileUtilities; | 77 class WebFileUtilities; |
| 78 class WebFlingAnimator; | 78 class WebFlingAnimator; |
| 79 class WebGeofencingProvider; | 79 class WebGeofencingProvider; |
| 80 class WebGestureCurve; | 80 class WebGestureCurve; |
| 81 class WebGraphicsContext3DProvider; | 81 class WebGraphicsContext3DProvider; |
| 82 class WebIDBFactory; | 82 class WebIDBFactory; |
| 83 class WebMIDIAccessor; | 83 class WebMIDIAccessor; |
| 84 class WebMIDIAccessorClient; | 84 class WebMIDIAccessorClient; |
| 85 class WebMediaRecorderHandler; |
| 85 class WebMediaStreamCenter; | 86 class WebMediaStreamCenter; |
| 86 class WebMediaStreamCenterClient; | 87 class WebMediaStreamCenterClient; |
| 87 class WebMemoryDumpProvider; | 88 class WebMemoryDumpProvider; |
| 88 class WebMessagePortChannel; | 89 class WebMessagePortChannel; |
| 89 class WebMimeRegistry; | 90 class WebMimeRegistry; |
| 90 class WebNavigatorConnectProvider; | 91 class WebNavigatorConnectProvider; |
| 91 class WebNotificationManager; | 92 class WebNotificationManager; |
| 92 class WebPermissionClient; | 93 class WebPermissionClient; |
| 93 class WebPluginListBuilder; | 94 class WebPluginListBuilder; |
| 94 class WebPrescientNetworking; | 95 class WebPrescientNetworking; |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 // Creates a new fling animation curve instance for device |deviceSource| | 621 // Creates a new fling animation curve instance for device |deviceSource| |
| 621 // with |velocity| and already scrolled |cumulativeScroll| pixels. | 622 // with |velocity| and already scrolled |cumulativeScroll| pixels. |
| 622 virtual WebGestureCurve* createFlingAnimationCurve(WebGestureDevice deviceSo
urce, const WebFloatPoint& velocity, const WebSize& cumulativeScroll) { return n
ullptr; } | 623 virtual WebGestureCurve* createFlingAnimationCurve(WebGestureDevice deviceSo
urce, const WebFloatPoint& velocity, const WebSize& cumulativeScroll) { return n
ullptr; } |
| 623 | 624 |
| 624 // WebRTC ---------------------------------------------------------- | 625 // WebRTC ---------------------------------------------------------- |
| 625 | 626 |
| 626 // Creates an WebRTCPeerConnectionHandler for RTCPeerConnection. | 627 // Creates an WebRTCPeerConnectionHandler for RTCPeerConnection. |
| 627 // 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. |
| 628 virtual WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler(WebRTCPe
erConnectionHandlerClient*) { return nullptr; } | 629 virtual WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler(WebRTCPe
erConnectionHandlerClient*) { return nullptr; } |
| 629 | 630 |
| 631 // Creates an WebMediaRecorderHandler to record MediaStreams. |
| 632 // May return null if the functionality is not available or out of resources
. |
| 633 virtual WebMediaRecorderHandler* createMediaRecorderHandler() { return nullp
tr; } |
| 634 |
| 630 // May return null if WebRTC functionality is not avaliable or out of resour
ces. | 635 // May return null if WebRTC functionality is not avaliable or out of resour
ces. |
| 631 virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterCl
ient*) { return nullptr; } | 636 virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterCl
ient*) { return nullptr; } |
| 632 | 637 |
| 633 | |
| 634 // WebWorker ---------------------------------------------------------- | 638 // WebWorker ---------------------------------------------------------- |
| 635 | 639 |
| 636 virtual void didStartWorkerRunLoop() { } | 640 virtual void didStartWorkerRunLoop() { } |
| 637 virtual void didStopWorkerRunLoop() { } | 641 virtual void didStopWorkerRunLoop() { } |
| 638 | 642 |
| 639 // WebCrypto ---------------------------------------------------------- | 643 // WebCrypto ---------------------------------------------------------- |
| 640 | 644 |
| 641 virtual WebCrypto* crypto() { return nullptr; } | 645 virtual WebCrypto* crypto() { return nullptr; } |
| 642 | 646 |
| 643 | 647 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 protected: | 740 protected: |
| 737 BLINK_PLATFORM_EXPORT Platform(); | 741 BLINK_PLATFORM_EXPORT Platform(); |
| 738 virtual ~Platform() { } | 742 virtual ~Platform() { } |
| 739 | 743 |
| 740 WebThread* m_mainThread; | 744 WebThread* m_mainThread; |
| 741 }; | 745 }; |
| 742 | 746 |
| 743 } // namespace blink | 747 } // namespace blink |
| 744 | 748 |
| 745 #endif | 749 #endif |
| OLD | NEW |