| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #include "WebStorageQuotaType.h" | 52 #include "WebStorageQuotaType.h" |
| 53 #include "WebString.h" | 53 #include "WebString.h" |
| 54 #include "WebURLError.h" | 54 #include "WebURLError.h" |
| 55 #include "WebVector.h" | 55 #include "WebVector.h" |
| 56 #include "WebWaitableEvent.h" | 56 #include "WebWaitableEvent.h" |
| 57 | 57 |
| 58 class GrContext; | 58 class GrContext; |
| 59 | 59 |
| 60 namespace blink { | 60 namespace blink { |
| 61 | 61 |
| 62 class WebApiKeyValidator; | |
| 63 class WebAudioBus; | 62 class WebAudioBus; |
| 64 class WebBlobRegistry; | 63 class WebBlobRegistry; |
| 65 class WebCanvasCaptureHandler; | 64 class WebCanvasCaptureHandler; |
| 66 class WebClipboard; | 65 class WebClipboard; |
| 67 class WebCompositorSupport; | 66 class WebCompositorSupport; |
| 68 class WebCookieJar; | 67 class WebCookieJar; |
| 69 class WebCrypto; | 68 class WebCrypto; |
| 70 class WebDatabaseObserver; | 69 class WebDatabaseObserver; |
| 71 class WebDiscardableMemory; | 70 class WebDiscardableMemory; |
| 72 class WebPlatformEventListener; | 71 class WebPlatformEventListener; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 class WebServicePortProviderClient; | 106 class WebServicePortProviderClient; |
| 108 class WebServiceWorkerCacheStorage; | 107 class WebServiceWorkerCacheStorage; |
| 109 class WebSocketHandle; | 108 class WebSocketHandle; |
| 110 class WebSpeechSynthesizer; | 109 class WebSpeechSynthesizer; |
| 111 class WebSpeechSynthesizerClient; | 110 class WebSpeechSynthesizerClient; |
| 112 class WebStorageNamespace; | 111 class WebStorageNamespace; |
| 113 class WebSyncProvider; | 112 class WebSyncProvider; |
| 114 struct WebFloatPoint; | 113 struct WebFloatPoint; |
| 115 class WebThemeEngine; | 114 class WebThemeEngine; |
| 116 class WebThread; | 115 class WebThread; |
| 116 class WebTrialTokenValidator; |
| 117 class WebURL; | 117 class WebURL; |
| 118 class WebURLLoader; | 118 class WebURLLoader; |
| 119 class WebUnitTestSupport; | 119 class WebUnitTestSupport; |
| 120 struct WebLocalizedString; | 120 struct WebLocalizedString; |
| 121 struct WebSize; | 121 struct WebSize; |
| 122 | 122 |
| 123 class Platform { | 123 class Platform { |
| 124 public: | 124 public: |
| 125 // HTML5 Database ------------------------------------------------------ | 125 // HTML5 Database ------------------------------------------------------ |
| 126 | 126 |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 | 636 |
| 637 virtual WebPermissionClient* permissionClient() { return nullptr; } | 637 virtual WebPermissionClient* permissionClient() { return nullptr; } |
| 638 | 638 |
| 639 | 639 |
| 640 // Background Sync API------------------------------------------------------
------ | 640 // Background Sync API------------------------------------------------------
------ |
| 641 | 641 |
| 642 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } | 642 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } |
| 643 | 643 |
| 644 // Experimental Framework ---------------------------------------------- | 644 // Experimental Framework ---------------------------------------------- |
| 645 | 645 |
| 646 virtual WebApiKeyValidator* apiKeyValidator() { return nullptr; } | 646 virtual WebTrialTokenValidator* trialTokenValidator() { return nullptr; } |
| 647 | 647 |
| 648 protected: | 648 protected: |
| 649 BLINK_PLATFORM_EXPORT Platform(); | 649 BLINK_PLATFORM_EXPORT Platform(); |
| 650 virtual ~Platform() { } | 650 virtual ~Platform() { } |
| 651 | 651 |
| 652 WebThread* m_mainThread; | 652 WebThread* m_mainThread; |
| 653 }; | 653 }; |
| 654 | 654 |
| 655 } // namespace blink | 655 } // namespace blink |
| 656 | 656 |
| 657 #endif | 657 #endif |
| OLD | NEW |