| 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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 | 628 |
| 629 virtual WebPermissionClient* permissionClient() { return nullptr; } | 629 virtual WebPermissionClient* permissionClient() { return nullptr; } |
| 630 | 630 |
| 631 | 631 |
| 632 // Background Sync API------------------------------------------------------
------ | 632 // Background Sync API------------------------------------------------------
------ |
| 633 | 633 |
| 634 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } | 634 virtual WebSyncProvider* backgroundSyncProvider() { return nullptr; } |
| 635 | 635 |
| 636 // Experimental Framework ---------------------------------------------- | 636 // Experimental Framework ---------------------------------------------- |
| 637 | 637 |
| 638 virtual WebApiKeyValidator* apiKeyValidator() { return nullptr; } | 638 virtual WebTrialTokenValidator* trialTokenValidator() { return nullptr; } |
| 639 | 639 |
| 640 protected: | 640 protected: |
| 641 BLINK_PLATFORM_EXPORT Platform(); | 641 BLINK_PLATFORM_EXPORT Platform(); |
| 642 virtual ~Platform() { } | 642 virtual ~Platform() { } |
| 643 | 643 |
| 644 WebThread* m_mainThread; | 644 WebThread* m_mainThread; |
| 645 }; | 645 }; |
| 646 | 646 |
| 647 } // namespace blink | 647 } // namespace blink |
| 648 | 648 |
| 649 #endif | 649 #endif |
| OLD | NEW |