Chromium Code Reviews| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 class WebRTCPeerConnectionHandler; | 94 class WebRTCPeerConnectionHandler; |
| 95 class WebRTCPeerConnectionHandlerClient; | 95 class WebRTCPeerConnectionHandlerClient; |
| 96 class WebSandboxSupport; | 96 class WebSandboxSupport; |
| 97 class WebScheduler; | 97 class WebScheduler; |
| 98 class WebSecurityOrigin; | 98 class WebSecurityOrigin; |
| 99 class WebScrollbarBehavior; | 99 class WebScrollbarBehavior; |
| 100 class WebSocketHandle; | 100 class WebSocketHandle; |
| 101 class WebSpeechSynthesizer; | 101 class WebSpeechSynthesizer; |
| 102 class WebSpeechSynthesizerClient; | 102 class WebSpeechSynthesizerClient; |
| 103 class WebStorageNamespace; | 103 class WebStorageNamespace; |
| 104 class WebSyncProvider; | |
| 104 struct WebFloatPoint; | 105 struct WebFloatPoint; |
| 105 class WebThemeEngine; | 106 class WebThemeEngine; |
| 106 class WebThread; | 107 class WebThread; |
| 107 class WebURL; | 108 class WebURL; |
| 108 class WebURLLoader; | 109 class WebURLLoader; |
| 109 class WebUnitTestSupport; | 110 class WebUnitTestSupport; |
| 110 class WebWaitableEvent; | 111 class WebWaitableEvent; |
| 111 struct WebLocalizedString; | 112 struct WebLocalizedString; |
| 112 struct WebSize; | 113 struct WebSize; |
| 113 | 114 |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 654 | 655 |
| 655 // Push API------------------------------------------------------------ | 656 // Push API------------------------------------------------------------ |
| 656 | 657 |
| 657 virtual WebPushProvider* pushProvider() { return 0; } | 658 virtual WebPushProvider* pushProvider() { return 0; } |
| 658 | 659 |
| 659 | 660 |
| 660 // navigator.connect -------------------------------------------------- | 661 // navigator.connect -------------------------------------------------- |
| 661 | 662 |
| 662 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0; } | 663 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0; } |
| 663 | 664 |
| 665 | |
|
jochen (gone - plz use gerrit)
2015/03/17 12:25:35
unrelated
iclelland
2015/03/19 13:13:42
Done.
| |
| 664 // Permissions -------------------------------------------------------- | 666 // Permissions -------------------------------------------------------- |
| 665 | 667 |
| 666 virtual WebPermissionClient* permissionClient() { return 0; } | 668 virtual WebPermissionClient* permissionClient() { return 0; } |
| 667 | 669 |
| 668 | 670 |
| 671 // Background Sync API------------------------------------------------------ ------ | |
| 672 | |
| 673 virtual WebSyncProvider* backgroundSyncProvider() { return 0; } | |
| 674 | |
| 669 protected: | 675 protected: |
| 670 BLINK_PLATFORM_EXPORT Platform(); | 676 BLINK_PLATFORM_EXPORT Platform(); |
| 671 virtual ~Platform() { } | 677 virtual ~Platform() { } |
| 672 | 678 |
| 673 WebThread* m_mainThread; | 679 WebThread* m_mainThread; |
| 674 }; | 680 }; |
| 675 | 681 |
| 676 } // namespace blink | 682 } // namespace blink |
| 677 | 683 |
| 678 #endif | 684 #endif |
| OLD | NEW |