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

Unified Diff: ipc/ipc_channel.cc

Issue 553283002: IPC::ChannelMojo: Introduce IPC::MojoBootstrap for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing windows build error Created 6 years, 3 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/ipc_channel.cc
diff --git a/ipc/ipc_channel.cc b/ipc/ipc_channel.cc
index a6ee14c01fcb10b95cc2d20e5aa3c13ab02f67e7..dcfc8cd7af73a119bb4804b192946b13d210d175 100644
--- a/ipc/ipc_channel.cc
+++ b/ipc/ipc_channel.cc
@@ -21,6 +21,10 @@ base::StaticAtomicSequenceNumber g_last_id;
namespace IPC {
+void Channel::OnClientLaunched(base::ProcessHandle handle) {
+}
+
+#if !defined(OS_NACL)
// static
std::string Channel::GenerateUniqueRandomChannelID() {
// Note: the string must start with the current process id, this is how
@@ -37,6 +41,7 @@ std::string Channel::GenerateUniqueRandomChannelID() {
g_last_id.GetNext(),
base::RandInt(0, std::numeric_limits<int32>::max()));
}
+#endif
} // namespace IPC

Powered by Google App Engine
This is Rietveld 408576698