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

Unified Diff: cc/scoped_ptr_hash_map.h

Issue 10989028: cc: Remove WebCore dependecies from CCRenderPass and CCDrawQuad classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/CCYUVVideoDrawQuad.cpp ('k') | cc/stubs/FloatPoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scoped_ptr_hash_map.h
diff --git a/cc/scoped_ptr_hash_map.h b/cc/scoped_ptr_hash_map.h
index c314ed52e5684729d49ba862f72a138f48b04808..44e80d1a84e93459405ca7891cfde37d03713c4d 100644
--- a/cc/scoped_ptr_hash_map.h
+++ b/cc/scoped_ptr_hash_map.h
@@ -122,10 +122,11 @@ class ScopedPtrHashMap {
inline iterator find(const Key& k) { return data_.find(k); }
inline size_t count(const Key& k) const { return data_.count(k); }
- inline pair<const_iterator, const_iterator> equal_range(const Key& k) const {
+ inline std::pair<const_iterator, const_iterator> equal_range(
jamesr 2012/09/26 00:00:21 hah, whoops! guessing this just wasn't referenced
danakj 2012/09/26 00:03:50 I think removing some header that was using std::p
+ const Key& k) const {
return data_.equal_range(k);
}
- inline pair<iterator, iterator> equal_range(const Key& k) {
+ inline std::pair<iterator, iterator> equal_range(const Key& k) {
return data_.equal_range(k);
}
« no previous file with comments | « cc/CCYUVVideoDrawQuad.cpp ('k') | cc/stubs/FloatPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698