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

Unified Diff: cc/base/scoped_ptr_hash_map.h

Issue 12676029: cc: Fix capitalization style in chromified files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
« no previous file with comments | « cc/base/region_unittest.cc ('k') | cc/base/tiling_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/scoped_ptr_hash_map.h
diff --git a/cc/base/scoped_ptr_hash_map.h b/cc/base/scoped_ptr_hash_map.h
index a2a8be7e404d02b6a545d7439dd344abba4b7499..734fb8a117c8e442bb5529b20f793f5ba7e50e0a 100644
--- a/cc/base/scoped_ptr_hash_map.h
+++ b/cc/base/scoped_ptr_hash_map.h
@@ -42,14 +42,14 @@ class ScopedPtrHashMap {
iterator it = find(key);
if (it != end())
erase(it);
- Value* rawPtr = data.release();
- return data_.insert(std::pair<Key, Value*>(key, rawPtr));
+ Value* raw_ptr = data.release();
+ return data_.insert(std::pair<Key, Value*>(key, raw_ptr));
}
// Does nothing if key is already present
std::pair<iterator, bool> add(Key key, scoped_ptr<Value> data) {
- Value* rawPtr = data.release();
- return data_.insert(std::pair<Key, Value*>(key, rawPtr));
+ Value* raw_ptr = data.release();
+ return data_.insert(std::pair<Key, Value*>(key, raw_ptr));
}
void erase(iterator it) {
« no previous file with comments | « cc/base/region_unittest.cc ('k') | cc/base/tiling_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698