Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(734)

Side by Side Diff: public/platform/Platform.h

Issue 855493002: [DO NOT REVIEW][DO NOT COMMIT] Introduce WebDataProducerHandle. Base URL: https://chromium.googlesource.com/chromium/blink.git@pump-data-out-of-stream
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | public/platform/WebCreateDataPipeOptions.h » ('j') | public/platform/WebDataProducerHandle.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698