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

Unified Diff: mojo/system/raw_shared_buffer_win.cc

Issue 304233005: Mojo: Implement passing of shared buffers across processes on POSIX. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: mojo/system/raw_shared_buffer_win.cc
diff --git a/mojo/system/raw_shared_buffer_win.cc b/mojo/system/raw_shared_buffer_win.cc
index 5426028d7875ae44bbcba16fc168ff581295cc9d..be4ceaf14e9484157a04234b0776b21faf56ec14 100644
--- a/mojo/system/raw_shared_buffer_win.cc
+++ b/mojo/system/raw_shared_buffer_win.cc
@@ -44,6 +44,15 @@ bool RawSharedBuffer::InitNoLock() {
return true;
}
+bool RawSharedBuffer::InitFromPlatformHandleNoLock(
+ embedder::ScopedPlatformHandle platform_handle) {
+ DCHECK(!handle_.is_valid());
+
+ // TODO(vtl): Implement.
+ NOTIMPLEMENTED();
+ return false;
+}
+
scoped_ptr<RawSharedBufferMapping> RawSharedBuffer::MapImplNoLock(
size_t offset,
size_t length) {

Powered by Google App Engine
This is Rietveld 408576698