| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 class WebMIDIAccessorClient; | 83 class WebMIDIAccessorClient; |
| 84 class WebMediaPlayer; | 84 class WebMediaPlayer; |
| 85 class WebMediaRecorderHandler; | 85 class WebMediaRecorderHandler; |
| 86 class WebMediaStream; | 86 class WebMediaStream; |
| 87 class WebMediaStreamCenter; | 87 class WebMediaStreamCenter; |
| 88 class WebMediaStreamCenterClient; | 88 class WebMediaStreamCenterClient; |
| 89 class WebMediaStreamTrack; | 89 class WebMediaStreamTrack; |
| 90 class WebMemoryDumpProvider; | 90 class WebMemoryDumpProvider; |
| 91 class WebMessagePortChannel; | 91 class WebMessagePortChannel; |
| 92 class WebMimeRegistry; | 92 class WebMimeRegistry; |
| 93 class WebNotificationManager; | |
| 94 class WebPermissionClient; | 93 class WebPermissionClient; |
| 95 class WebPluginListBuilder; | 94 class WebPluginListBuilder; |
| 96 class WebPrescientNetworking; | 95 class WebPrescientNetworking; |
| 97 class WebProcessMemoryDump; | 96 class WebProcessMemoryDump; |
| 98 class WebPublicSuffixList; | 97 class WebPublicSuffixList; |
| 99 class WebPushProvider; | 98 class WebPushProvider; |
| 100 class WebRTCCertificateGenerator; | 99 class WebRTCCertificateGenerator; |
| 101 class WebRTCPeerConnectionHandler; | 100 class WebRTCPeerConnectionHandler; |
| 102 class WebRTCPeerConnectionHandlerClient; | 101 class WebRTCPeerConnectionHandlerClient; |
| 103 class WebSandboxSupport; | 102 class WebSandboxSupport; |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 const WebURL& storagePartition, | 580 const WebURL& storagePartition, |
| 582 WebStorageQuotaType, | 581 WebStorageQuotaType, |
| 583 WebStorageQuotaCallbacks) { } | 582 WebStorageQuotaCallbacks) { } |
| 584 | 583 |
| 585 | 584 |
| 586 // WebDatabase -------------------------------------------------------- | 585 // WebDatabase -------------------------------------------------------- |
| 587 | 586 |
| 588 virtual WebDatabaseObserver* databaseObserver() { return nullptr; } | 587 virtual WebDatabaseObserver* databaseObserver() { return nullptr; } |
| 589 | 588 |
| 590 | 589 |
| 591 // Web Notifications -------------------------------------------------- | |
| 592 | |
| 593 virtual WebNotificationManager* notificationManager() { return nullptr; } | |
| 594 | |
| 595 | |
| 596 // Geofencing --------------------------------------------------------- | 590 // Geofencing --------------------------------------------------------- |
| 597 | 591 |
| 598 virtual WebGeofencingProvider* geofencingProvider() { return nullptr; } | 592 virtual WebGeofencingProvider* geofencingProvider() { return nullptr; } |
| 599 | 593 |
| 600 | 594 |
| 601 // Push API------------------------------------------------------------ | 595 // Push API------------------------------------------------------------ |
| 602 | 596 |
| 603 virtual WebPushProvider* pushProvider() { return nullptr; } | 597 virtual WebPushProvider* pushProvider() { return nullptr; } |
| 604 | 598 |
| 605 | 599 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 619 protected: | 613 protected: |
| 620 Platform(); | 614 Platform(); |
| 621 virtual ~Platform() { } | 615 virtual ~Platform() { } |
| 622 | 616 |
| 623 WebThread* m_mainThread; | 617 WebThread* m_mainThread; |
| 624 }; | 618 }; |
| 625 | 619 |
| 626 } // namespace blink | 620 } // namespace blink |
| 627 | 621 |
| 628 #endif | 622 #endif |
| OLD | NEW |