summaryrefslogtreecommitdiffstats
path: root/base/shared_memory_posix.cc
diff options
context:
space:
mode:
authormhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-01 02:48:05 +0000
committermhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-01 02:48:05 +0000
commit5d2b449b4f0b3d13c75e540c834c550ed38c0912 (patch)
tree6224e6d93676677f19fb03e7d80b46ea15dcf3b5 /base/shared_memory_posix.cc
parentc4e678d0902b04606ff2a21714e33643d01a74ed (diff)
downloadchromium_src-5d2b449b4f0b3d13c75e540c834c550ed38c0912.zip
chromium_src-5d2b449b4f0b3d13c75e540c834c550ed38c0912.tar.gz
chromium_src-5d2b449b4f0b3d13c75e540c834c550ed38c0912.tar.bz2
More DCHECK() updates. A mixture of _EQ and _GE.
Bug=58409 Review URL: http://codereview.chromium.org/6469070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/shared_memory_posix.cc')
-rw-r--r--base/shared_memory_posix.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/shared_memory_posix.cc b/base/shared_memory_posix.cc
index cafda5a..8dc9463 100644
--- a/base/shared_memory_posix.cc
+++ b/base/shared_memory_posix.cc
@@ -99,7 +99,7 @@ bool SharedMemory::CreateAnonymous(uint32 size) {
// of mem_filename after FilePathForMemoryName().
bool SharedMemory::CreateNamed(const std::string& name,
bool open_existing, uint32 size) {
- DCHECK(mapped_file_ == -1);
+ DCHECK_EQ(-1, mapped_file_);
if (size == 0) return false;
// This function theoretically can block on the disk, but realistically
@@ -245,7 +245,7 @@ void SharedMemory::Unlock() {
}
bool SharedMemory::PrepareMapFile(FILE *fp) {
- DCHECK(mapped_file_ == -1);
+ DCHECK_EQ(-1, mapped_file_);
if (fp == NULL) return false;
// This function theoretically can block on the disk, but realistically
@@ -280,8 +280,8 @@ bool SharedMemory::FilePathForMemoryName(const std::string& mem_name,
FilePath* path) {
// mem_name will be used for a filename; make sure it doesn't
// contain anything which will confuse us.
- DCHECK(mem_name.find('/') == std::string::npos);
- DCHECK(mem_name.find('\0') == std::string::npos);
+ DCHECK_EQ(std::string::npos, mem_name.find('/'));
+ DCHECK_EQ(std::string::npos, mem_name.find('\0'));
FilePath temp_dir;
if (!file_util::GetShmemTempDir(&temp_dir))