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

Unified Diff: ipc/attachment_broker_unprivileged.cc

Issue 1256993003: ipc: Create AttachmentBrokerPrivileged and AttachmentBrokerUnprivileged. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add_ipc_message_feature
Patch Set: Rebase. Created 5 years, 5 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: ipc/attachment_broker_unprivileged.cc
diff --git a/ipc/ipc_handle_win.cc b/ipc/attachment_broker_unprivileged.cc
similarity index 53%
copy from ipc/ipc_handle_win.cc
copy to ipc/attachment_broker_unprivileged.cc
index da3b9bb6125dba3e65d0dcbf83902ee5248a5ffe..bc2eb5a764dbf0dfafa61ea5286bbc04d1b4bb70 100644
--- a/ipc/ipc_handle_win.cc
+++ b/ipc/attachment_broker_unprivileged.cc
@@ -2,14 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ipc/ipc_handle_win.h"
+#include "ipc/attachment_broker_unprivileged.h"
namespace IPC {
-HandleForTransit CreateHandleForTransit(HANDLE handle) {
- HandleForTransit hft;
- hft.handle = handle;
- return hft;
-}
+AttachmentBrokerUnprivileged::AttachmentBrokerUnprivileged() {}
+
+AttachmentBrokerUnprivileged::~AttachmentBrokerUnprivileged() {}
} // namespace IPC

Powered by Google App Engine
This is Rietveld 408576698