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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 class WebGestureCurveTarget; | 78 class WebGestureCurveTarget; |
79 class WebGestureCurve; | 79 class WebGestureCurve; |
80 class WebGraphicsContext3DProvider; | 80 class WebGraphicsContext3DProvider; |
81 class WebIDBFactory; | 81 class WebIDBFactory; |
82 class WebMIDIAccessor; | 82 class WebMIDIAccessor; |
83 class WebMIDIAccessorClient; | 83 class WebMIDIAccessorClient; |
84 class WebMediaStreamCenter; | 84 class WebMediaStreamCenter; |
85 class WebMediaStreamCenterClient; | 85 class WebMediaStreamCenterClient; |
86 class WebMessagePortChannel; | 86 class WebMessagePortChannel; |
87 class WebMimeRegistry; | 87 class WebMimeRegistry; |
88 class WebNotificationPresenter; | 88 class WebNotificationManager; |
89 class WebPluginListBuilder; | 89 class WebPluginListBuilder; |
90 class WebPrescientNetworking; | 90 class WebPrescientNetworking; |
91 class WebPublicSuffixList; | 91 class WebPublicSuffixList; |
92 class WebRTCPeerConnectionHandler; | 92 class WebRTCPeerConnectionHandler; |
93 class WebRTCPeerConnectionHandlerClient; | 93 class WebRTCPeerConnectionHandlerClient; |
94 class WebSandboxSupport; | 94 class WebSandboxSupport; |
95 class WebSecurityOrigin; | 95 class WebSecurityOrigin; |
96 class WebScrollbarBehavior; | 96 class WebScrollbarBehavior; |
97 class WebSocketHandle; | 97 class WebSocketHandle; |
98 class WebSocketStreamHandle; | 98 class WebSocketStreamHandle; |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 WebStorageQuotaCallbacks) { } | 622 WebStorageQuotaCallbacks) { } |
623 | 623 |
624 | 624 |
625 // WebDatabase -------------------------------------------------------- | 625 // WebDatabase -------------------------------------------------------- |
626 | 626 |
627 virtual WebDatabaseObserver* databaseObserver() { return 0; } | 627 virtual WebDatabaseObserver* databaseObserver() { return 0; } |
628 | 628 |
629 | 629 |
630 // Web Notifications -------------------------------------------------- | 630 // Web Notifications -------------------------------------------------- |
631 | 631 |
632 virtual WebNotificationPresenter* notificationPresenter() { return 0; } | 632 virtual WebNotificationManager* notificationManager() { return 0; } |
633 | 633 |
634 | 634 |
635 // Geofencing --------------------------------------------------------- | 635 // Geofencing --------------------------------------------------------- |
636 | 636 |
637 virtual WebGeofencingProvider* geofencingProvider() { return 0; } | 637 virtual WebGeofencingProvider* geofencingProvider() { return 0; } |
638 | 638 |
639 protected: | 639 protected: |
640 virtual ~Platform() { } | 640 virtual ~Platform() { } |
641 }; | 641 }; |
642 | 642 |
643 } // namespace blink | 643 } // namespace blink |
644 | 644 |
645 #endif | 645 #endif |
OLD | NEW |