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

Side by Side Diff: Source/wtf/InstanceCounter.cpp

Issue 138643003: Simpler return value of HashTable::add/HashMap:add and others (Closed)
Patch Set: Daily master update (now with base url?) Created 6 years, 10 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 unified diff | Download patch
« no previous file with comments | « Source/wtf/HashTable.h ('k') | Source/wtf/ListHashSet.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 String dumpRefCountedInstanceCounts() 89 String dumpRefCountedInstanceCounts()
90 { 90 {
91 return InstanceCounter::instance()->dump(); 91 return InstanceCounter::instance()->dump();
92 } 92 }
93 93
94 void InstanceCounter::incrementInstanceCount(const String& instanceName, void* p tr) 94 void InstanceCounter::incrementInstanceCount(const String& instanceName, void* p tr)
95 { 95 {
96 MutexLocker locker(m_mutex); 96 MutexLocker locker(m_mutex);
97 HashMap<String, int>::AddResult result = m_counterMap.add(instanceName, 1); 97 HashMap<String, int>::AddResult result = m_counterMap.add(instanceName, 1);
98 if (!result.isNewEntry) 98 if (!result.isNewEntry)
99 ++(result.iterator->value); 99 ++(result.storedValue->value);
100 } 100 }
101 101
102 void InstanceCounter::decrementInstanceCount(const String& instanceName, void* p tr) 102 void InstanceCounter::decrementInstanceCount(const String& instanceName, void* p tr)
103 { 103 {
104 MutexLocker locker(m_mutex); 104 MutexLocker locker(m_mutex);
105 HashMap<String, int>::iterator it = m_counterMap.find(instanceName); 105 HashMap<String, int>::iterator it = m_counterMap.find(instanceName);
106 ASSERT(it != m_counterMap.end()); 106 ASSERT(it != m_counterMap.end());
107 107
108 --(it->value); 108 --(it->value);
109 if (!it->value) 109 if (!it->value)
(...skipping 25 matching lines...) Expand all
135 #else 135 #else
136 136
137 String dumpRefCountedInstanceCounts() 137 String dumpRefCountedInstanceCounts()
138 { 138 {
139 return String("{}"); 139 return String("{}");
140 } 140 }
141 141
142 #endif // ENABLE_INSTANCE_COUNTER 142 #endif // ENABLE_INSTANCE_COUNTER
143 143
144 } // namespace WTF 144 } // namespace WTF
OLDNEW
« no previous file with comments | « Source/wtf/HashTable.h ('k') | Source/wtf/ListHashSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698