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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 class WebCompositorSupport; | 66 class WebCompositorSupport; |
67 class WebCookieJar; | 67 class WebCookieJar; |
68 class WebCrypto; | 68 class WebCrypto; |
69 class WebDatabaseObserver; | 69 class WebDatabaseObserver; |
70 class WebDiscardableMemory; | 70 class WebDiscardableMemory; |
71 class WebPlatformEventListener; | 71 class WebPlatformEventListener; |
72 class WebFallbackThemeEngine; | 72 class WebFallbackThemeEngine; |
73 class WebFileSystem; | 73 class WebFileSystem; |
74 class WebFileUtilities; | 74 class WebFileUtilities; |
75 class WebFlingAnimator; | 75 class WebFlingAnimator; |
| 76 class WebFontAccess; |
76 class WebGeofencingProvider; | 77 class WebGeofencingProvider; |
77 class WebGestureCurve; | 78 class WebGestureCurve; |
78 class WebGraphicsContext3DProvider; | 79 class WebGraphicsContext3DProvider; |
79 class WebIDBFactory; | 80 class WebIDBFactory; |
80 class WebMIDIAccessor; | 81 class WebMIDIAccessor; |
81 class WebMIDIAccessorClient; | 82 class WebMIDIAccessorClient; |
82 class WebMediaPlayer; | 83 class WebMediaPlayer; |
83 class WebMediaRecorderHandler; | 84 class WebMediaRecorderHandler; |
84 class WebMediaStream; | 85 class WebMediaStream; |
85 class WebMediaStreamCenter; | 86 class WebMediaStreamCenter; |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 | 634 |
634 // Permissions -------------------------------------------------------- | 635 // Permissions -------------------------------------------------------- |
635 | 636 |
636 virtual WebPermissionClient* permissionClient() { return nullptr; } | 637 virtual WebPermissionClient* permissionClient() { return nullptr; } |
637 | 638 |
638 | 639 |
639 // Background Sync API------------------------------------------------------
------ | 640 // Background Sync API------------------------------------------------------
------ |
640 | 641 |
641 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } | 642 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } |
642 | 643 |
| 644 virtual WebFontAccess* fontAccess() { return nullptr; } |
| 645 |
643 protected: | 646 protected: |
644 BLINK_PLATFORM_EXPORT Platform(); | 647 BLINK_PLATFORM_EXPORT Platform(); |
645 virtual ~Platform() { } | 648 virtual ~Platform() { } |
646 | 649 |
647 WebThread* m_mainThread; | 650 WebThread* m_mainThread; |
648 }; | 651 }; |
649 | 652 |
650 } // namespace blink | 653 } // namespace blink |
651 | 654 |
652 #endif | 655 #endif |
OLD | NEW |