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

Side by Side Diff: third_party/cld/base/stl_decl_msvc.h

Issue 10835019: Fix license headers in a number of files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix case Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // In most .h files, we would rather include a declaration of an stl 5 // In most .h files, we would rather include a declaration of an stl
6 // rather than including the appropriate stl h file (which brings in 6 // rather than including the appropriate stl h file (which brings in
7 // lots of noise). For many STL classes this is ok (eg pair), but for 7 // lots of noise). For many STL classes this is ok (eg pair), but for
8 // some it's really annoying. We define those here, so you can 8 // some it's really annoying. We define those here, so you can
9 // just include this file instead of having to deal with the annoyance. 9 // just include this file instead of having to deal with the annoyance.
10 // 10 //
11 // Most of the annoyance, btw, has to do with the default allocator. 11 // Most of the annoyance, btw, has to do with the default allocator.
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 using msvchash::hash_multiset; 98 using msvchash::hash_multiset;
99 99
100 #else 100 #else
101 #define hash_map map 101 #define hash_map map
102 #define hash_set set 102 #define hash_set set
103 #endif 103 #endif
104 104
105 using namespace std; 105 using namespace std;
106 106
107 #endif /* #ifdef _STL_DECL_MSVC_H */ 107 #endif /* #ifdef _STL_DECL_MSVC_H */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698