summaryrefslogtreecommitdiffstats
path: root/chrome/common/mach_ipc_mac.mm
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-09 08:04:53 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-09 08:04:53 +0000
commit3a3085e4167ef0a9e9b0b8c31930e2e61dc210fc (patch)
treeb8b73d5e2d2418bd3a15e0ffdc488080cc21d27d /chrome/common/mach_ipc_mac.mm
parent2191d2082e2bf1f937ec4592b4f8c185f04f3fd6 (diff)
downloadchromium_src-3a3085e4167ef0a9e9b0b8c31930e2e61dc210fc.zip
chromium_src-3a3085e4167ef0a9e9b0b8c31930e2e61dc210fc.tar.gz
chromium_src-3a3085e4167ef0a9e9b0b8c31930e2e61dc210fc.tar.bz2
Revert 34146 - A place to store the pid>mach_port_t mapping.
Not yet for review. Landing to measure perf impact, will revert immediately. BUG=13156 TEST=unittests Review URL: http://codereview.chromium.org/460126 TBR=thakis@chromium.org Review URL: http://codereview.chromium.org/466088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34147 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/mach_ipc_mac.mm')
-rw-r--r--chrome/common/mach_ipc_mac.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/mach_ipc_mac.mm b/chrome/common/mach_ipc_mac.mm
index 7693d9a..3c95ef6 100644
--- a/chrome/common/mach_ipc_mac.mm
+++ b/chrome/common/mach_ipc_mac.mm
@@ -213,10 +213,10 @@ ReceivePort::ReceivePort() {
if (init_result_ != KERN_SUCCESS)
return;
- init_result_ = mach_port_insert_right(current_task,
- port_,
- port_,
- MACH_MSG_TYPE_MAKE_SEND);
+ init_result_ = mach_port_insert_right(current_task,
+ port_,
+ port_,
+ MACH_MSG_TYPE_MAKE_SEND);
}
//==============================================================================