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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 class WebConvertableToTraceFormat; | 67 class WebConvertableToTraceFormat; |
68 class WebCookieJar; | 68 class WebCookieJar; |
69 class WebCrypto; | 69 class WebCrypto; |
70 class WebDatabaseObserver; | 70 class WebDatabaseObserver; |
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 WebFontAccess; |
77 class WebGeofencingProvider; | 78 class WebGeofencingProvider; |
78 class WebGestureCurve; | 79 class WebGestureCurve; |
79 class WebGraphicsContext3DProvider; | 80 class WebGraphicsContext3DProvider; |
80 class WebIDBFactory; | 81 class WebIDBFactory; |
81 class WebMIDIAccessor; | 82 class WebMIDIAccessor; |
82 class WebMIDIAccessorClient; | 83 class WebMIDIAccessorClient; |
83 class WebMediaRecorderHandler; | 84 class WebMediaRecorderHandler; |
84 class WebMediaStreamCenter; | 85 class WebMediaStreamCenter; |
85 class WebMediaStreamCenterClient; | 86 class WebMediaStreamCenterClient; |
86 class WebMediaStreamTrack; | 87 class WebMediaStreamTrack; |
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 | 738 |
738 // Permissions -------------------------------------------------------- | 739 // Permissions -------------------------------------------------------- |
739 | 740 |
740 virtual WebPermissionClient* permissionClient() { return nullptr; } | 741 virtual WebPermissionClient* permissionClient() { return nullptr; } |
741 | 742 |
742 | 743 |
743 // Background Sync API------------------------------------------------------
------ | 744 // Background Sync API------------------------------------------------------
------ |
744 | 745 |
745 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } | 746 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } |
746 | 747 |
| 748 virtual WebFontAccess* fontAccess() { return nullptr; } |
| 749 |
747 protected: | 750 protected: |
748 BLINK_PLATFORM_EXPORT Platform(); | 751 BLINK_PLATFORM_EXPORT Platform(); |
749 virtual ~Platform() { } | 752 virtual ~Platform() { } |
750 | 753 |
751 WebThread* m_mainThread; | 754 WebThread* m_mainThread; |
752 }; | 755 }; |
753 | 756 |
754 } // namespace blink | 757 } // namespace blink |
755 | 758 |
756 #endif | 759 #endif |
OLD | NEW |