| 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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 const WebURL& storagePartition, | 578 const WebURL& storagePartition, |
| 580 WebStorageQuotaType, | 579 WebStorageQuotaType, |
| 581 WebStorageQuotaCallbacks) { } | 580 WebStorageQuotaCallbacks) { } |
| 582 | 581 |
| 583 | 582 |
| 584 // WebDatabase -------------------------------------------------------- | 583 // WebDatabase -------------------------------------------------------- |
| 585 | 584 |
| 586 virtual WebDatabaseObserver* databaseObserver() { return nullptr; } | 585 virtual WebDatabaseObserver* databaseObserver() { return nullptr; } |
| 587 | 586 |
| 588 | 587 |
| 589 // Web Notifications -------------------------------------------------- | |
| 590 | |
| 591 virtual WebNotificationManager* notificationManager() { return nullptr; } | |
| 592 | |
| 593 | |
| 594 // Geofencing --------------------------------------------------------- | 588 // Geofencing --------------------------------------------------------- |
| 595 | 589 |
| 596 virtual WebGeofencingProvider* geofencingProvider() { return nullptr; } | 590 virtual WebGeofencingProvider* geofencingProvider() { return nullptr; } |
| 597 | 591 |
| 598 | 592 |
| 599 // Push API------------------------------------------------------------ | 593 // Push API------------------------------------------------------------ |
| 600 | 594 |
| 601 virtual WebPushProvider* pushProvider() { return nullptr; } | 595 virtual WebPushProvider* pushProvider() { return nullptr; } |
| 602 | 596 |
| 603 | 597 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 617 protected: | 611 protected: |
| 618 Platform(); | 612 Platform(); |
| 619 virtual ~Platform() { } | 613 virtual ~Platform() { } |
| 620 | 614 |
| 621 WebThread* m_mainThread; | 615 WebThread* m_mainThread; |
| 622 }; | 616 }; |
| 623 | 617 |
| 624 } // namespace blink | 618 } // namespace blink |
| 625 | 619 |
| 626 #endif | 620 #endif |
| OLD | NEW |