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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 59 | 59 |
| 60 namespace blink { | 60 namespace blink { |
| 61 | 61 |
| 62 class WebAudioBus; | 62 class WebAudioBus; |
| 63 class WebBlobRegistry; | 63 class WebBlobRegistry; |
| 64 class WebBluetooth; | 64 class WebBluetooth; |
| 65 class WebClipboard; | 65 class WebClipboard; |
| 66 class WebCompositorSupport; | 66 class WebCompositorSupport; |
| 67 class WebConvertableToTraceFormat; | 67 class WebConvertableToTraceFormat; |
| 68 class WebCookieJar; | 68 class WebCookieJar; |
| 69 class WebCreateDataPipeOptions; | |
| 69 class WebCrypto; | 70 class WebCrypto; |
| 71 class WebDataConsumerHandle; | |
| 72 class WebDataProducerHandle; | |
| 70 class WebDatabaseObserver; | 73 class WebDatabaseObserver; |
| 71 class WebDiscardableMemory; | 74 class WebDiscardableMemory; |
| 72 class WebPlatformEventListener; | 75 class WebPlatformEventListener; |
| 73 class WebFallbackThemeEngine; | 76 class WebFallbackThemeEngine; |
| 74 class WebFileSystem; | 77 class WebFileSystem; |
| 75 class WebFileUtilities; | 78 class WebFileUtilities; |
| 76 class WebFlingAnimator; | 79 class WebFlingAnimator; |
| 77 class WebGeofencingProvider; | 80 class WebGeofencingProvider; |
| 78 class WebGestureCurve; | 81 class WebGestureCurve; |
| 79 class WebGraphicsContext3DProvider; | 82 class WebGraphicsContext3DProvider; |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 640 | 643 |
| 641 // Push API------------------------------------------------------------ | 644 // Push API------------------------------------------------------------ |
| 642 | 645 |
| 643 virtual WebPushProvider* pushProvider() { return 0; } | 646 virtual WebPushProvider* pushProvider() { return 0; } |
| 644 | 647 |
| 645 | 648 |
| 646 // navigator.connect -------------------------------------------------- | 649 // navigator.connect -------------------------------------------------- |
| 647 | 650 |
| 648 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0; } | 651 virtual WebNavigatorConnectProvider* navigatorConnectProvider() { return 0; } |
| 649 | 652 |
| 653 // |options| can be null. The default option is used in such a case. | |
| 654 // Creates a producer handle and a consumer handle, and store them into | |
|
tyoshino (SeeGerritForStatus)
2015/01/23 08:24:20
stores
yhirano
2015/01/23 10:49:02
Done.
| |
| 655 // the output parameters. Returns true when the operation succeeds. | |
| 656 virtual bool createDataPipe(const WebCreateDataPipeOptions* /* options */, W ebDataProducerHandle**, WebDataConsumerHandle**) { return false; } | |
| 657 | |
| 650 protected: | 658 protected: |
| 651 virtual ~Platform() { } | 659 virtual ~Platform() { } |
| 652 }; | 660 }; |
| 653 | 661 |
| 654 } // namespace blink | 662 } // namespace blink |
| 655 | 663 |
| 656 #endif | 664 #endif |
| OLD | NEW |