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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 class WebDiscardableMemory; | 71 class WebDiscardableMemory; |
72 class WebPlatformEventListener; | 72 class WebPlatformEventListener; |
73 class WebFallbackThemeEngine; | 73 class WebFallbackThemeEngine; |
74 class WebFileSystem; | 74 class WebFileSystem; |
75 class WebFileUtilities; | 75 class WebFileUtilities; |
76 class WebFlingAnimator; | 76 class WebFlingAnimator; |
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 WebInstalledApp; |
81 class WebMIDIAccessor; | 82 class WebMIDIAccessor; |
82 class WebMIDIAccessorClient; | 83 class WebMIDIAccessorClient; |
83 class WebMediaPlayer; | 84 class WebMediaPlayer; |
84 class WebMediaRecorderHandler; | 85 class WebMediaRecorderHandler; |
85 class WebMediaStream; | 86 class WebMediaStream; |
86 class WebMediaStreamCenter; | 87 class WebMediaStreamCenter; |
87 class WebMediaStreamCenterClient; | 88 class WebMediaStreamCenterClient; |
88 class WebMediaStreamTrack; | 89 class WebMediaStreamTrack; |
89 class WebMemoryDumpProvider; | 90 class WebMemoryDumpProvider; |
90 class WebMessagePortChannel; | 91 class WebMessagePortChannel; |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 | 635 |
635 // Permissions -------------------------------------------------------- | 636 // Permissions -------------------------------------------------------- |
636 | 637 |
637 virtual WebPermissionClient* permissionClient() { return nullptr; } | 638 virtual WebPermissionClient* permissionClient() { return nullptr; } |
638 | 639 |
639 | 640 |
640 // Background Sync API------------------------------------------------------
------ | 641 // Background Sync API------------------------------------------------------
------ |
641 | 642 |
642 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } | 643 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } |
643 | 644 |
| 645 virtual WebInstalledApp* installedApp() { return nullptr; } |
| 646 |
644 // Experimental Framework ---------------------------------------------- | 647 // Experimental Framework ---------------------------------------------- |
645 | 648 |
646 virtual WebApiKeyValidator* apiKeyValidator() { return nullptr; } | 649 virtual WebApiKeyValidator* apiKeyValidator() { return nullptr; } |
647 | 650 |
648 protected: | 651 protected: |
649 BLINK_PLATFORM_EXPORT Platform(); | 652 BLINK_PLATFORM_EXPORT Platform(); |
650 virtual ~Platform() { } | 653 virtual ~Platform() { } |
651 | 654 |
652 WebThread* m_mainThread; | 655 WebThread* m_mainThread; |
653 }; | 656 }; |
654 | 657 |
655 } // namespace blink | 658 } // namespace blink |
656 | 659 |
657 #endif | 660 #endif |
OLD | NEW |