summaryrefslogtreecommitdiffstats
path: root/sandbox
diff options
context:
space:
mode:
authorsungmann.cho <sungmann.cho@navercorp.com>2014-12-05 15:42:19 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-05 23:42:54 +0000
commit12349f0e5c13def99e4c4cf9fc6b2d7d73eb695f (patch)
treeaab5fba4bef40b90ca4cdd5ca567f91e46c5dbf3 /sandbox
parentc4d96cd7c08fe1e3c17ab8b6d56944c979b98402 (diff)
downloadchromium_src-12349f0e5c13def99e4c4cf9fc6b2d7d73eb695f.zip
chromium_src-12349f0e5c13def99e4c4cf9fc6b2d7d73eb695f.tar.gz
chromium_src-12349f0e5c13def99e4c4cf9fc6b2d7d73eb695f.tar.bz2
Fix some minor typos: abandonned -> abandoned
BUG=none Review URL: https://codereview.chromium.org/769153004 Cr-Commit-Position: refs/heads/master@{#307115}
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/win/src/sharedmem_ipc_client.cc2
-rw-r--r--sandbox/win/src/sharedmem_ipc_client.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/win/src/sharedmem_ipc_client.cc b/sandbox/win/src/sharedmem_ipc_client.cc
index 9d37bbd..fa6a877 100644
--- a/sandbox/win/src/sharedmem_ipc_client.cc
+++ b/sandbox/win/src/sharedmem_ipc_client.cc
@@ -90,7 +90,7 @@ ResultCode SharedMemIPCClient::DoCall(CrossCallParams* params,
} else {
// The server has crashed and windows has signaled the mutex as
// abandoned.
- ::InterlockedExchange(&channel[num].state, kAbandonnedChannel);
+ ::InterlockedExchange(&channel[num].state, kAbandonedChannel);
control_->server_alive = 0;
return SBOX_ERROR_CHANNEL_ERROR;
}
diff --git a/sandbox/win/src/sharedmem_ipc_client.h b/sandbox/win/src/sharedmem_ipc_client.h
index a0c5f2f..9eec74a 100644
--- a/sandbox/win/src/sharedmem_ipc_client.h
+++ b/sandbox/win/src/sharedmem_ipc_client.h
@@ -62,7 +62,7 @@ enum ChannelState {
// not used right now
kReadyChannel,
// IPC abandoned by client side
- kAbandonnedChannel
+ kAbandonedChannel
};
// The next two constants control the time outs for the IPC.