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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 class WebGeofencingProvider; | 77 class WebGeofencingProvider; |
78 class WebGestureCurve; | 78 class WebGestureCurve; |
79 class WebGraphicsContext3DProvider; | 79 class WebGraphicsContext3DProvider; |
80 class WebIDBFactory; | 80 class WebIDBFactory; |
81 class WebMIDIAccessor; | 81 class WebMIDIAccessor; |
82 class WebMIDIAccessorClient; | 82 class WebMIDIAccessorClient; |
83 class WebMediaStreamCenter; | 83 class WebMediaStreamCenter; |
84 class WebMediaStreamCenterClient; | 84 class WebMediaStreamCenterClient; |
85 class WebMessagePortChannel; | 85 class WebMessagePortChannel; |
86 class WebMimeRegistry; | 86 class WebMimeRegistry; |
| 87 class WebNavigatorConnectProvider; |
87 class WebNotificationManager; | 88 class WebNotificationManager; |
88 class WebPluginListBuilder; | 89 class WebPluginListBuilder; |
89 class WebPrescientNetworking; | 90 class WebPrescientNetworking; |
90 class WebPublicSuffixList; | 91 class WebPublicSuffixList; |
91 class WebPushProvider; | 92 class WebPushProvider; |
92 class WebRTCPeerConnectionHandler; | 93 class WebRTCPeerConnectionHandler; |
93 class WebRTCPeerConnectionHandlerClient; | 94 class WebRTCPeerConnectionHandlerClient; |
94 class WebSandboxSupport; | 95 class WebSandboxSupport; |
95 class WebScheduler; | 96 class WebScheduler; |
96 class WebSecurityOrigin; | 97 class WebSecurityOrigin; |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 | 624 |
624 // Web Notifications -------------------------------------------------- | 625 // Web Notifications -------------------------------------------------- |
625 | 626 |
626 virtual WebNotificationManager* notificationManager() { return 0; } | 627 virtual WebNotificationManager* notificationManager() { return 0; } |
627 | 628 |
628 | 629 |
629 // Geofencing --------------------------------------------------------- | 630 // Geofencing --------------------------------------------------------- |
630 | 631 |
631 virtual WebGeofencingProvider* geofencingProvider() { return 0; } | 632 virtual WebGeofencingProvider* geofencingProvider() { return 0; } |
632 | 633 |
| 634 |
633 // Bluetooth ---------------------------------------------------------- | 635 // Bluetooth ---------------------------------------------------------- |
634 | 636 |
635 // Returns pointer to client owned WebBluetooth implementation. | 637 // Returns pointer to client owned WebBluetooth implementation. |
636 virtual WebBluetooth* bluetooth() { return 0; } | 638 virtual WebBluetooth* bluetooth() { return 0; } |
637 | 639 |
638 | 640 |
639 // Push API------------------------------------------------------------ | 641 // Push API------------------------------------------------------------ |
640 | 642 |
641 virtual WebPushProvider* pushProvider() { return 0; } | 643 virtual WebPushProvider* pushProvider() { return 0; } |
642 | 644 |
| 645 |
| 646 // navigator.connect -------------------------------------------------- |
| 647 |
| 648 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0;
} |
| 649 |
643 protected: | 650 protected: |
644 virtual ~Platform() { } | 651 virtual ~Platform() { } |
645 }; | 652 }; |
646 | 653 |
647 } // namespace blink | 654 } // namespace blink |
648 | 655 |
649 #endif | 656 #endif |
OLD | NEW |