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

Side by Side Diff: base/strings/string_piece.h

Issue 1629693002: Add missing closing namespace comments to wtf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « base/containers/hash_tables.h ('k') | third_party/WebKit/Source/wtf/ASCIICType.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 // Copyright (c) 2012 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 // Copied from strings/stringpiece.h with modifications 4 // Copied from strings/stringpiece.h with modifications
5 // 5 //
6 // A string-like object that points to a sized piece of memory. 6 // A string-like object that points to a sized piece of memory.
7 // 7 //
8 // You can use StringPiece as a function or method parameter. A StringPiece 8 // You can use StringPiece as a function or method parameter. A StringPiece
9 // parameter can receive a double-quoted string literal argument, a "const 9 // parameter can receive a double-quoted string literal argument, a "const
10 // char*" argument, a string argument, or a StringPiece argument with no data 10 // char*" argument, a string argument, or a StringPiece argument with no data
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 HASH_STRING_PIECE(base::StringPiece, sp); 457 HASH_STRING_PIECE(base::StringPiece, sp);
458 } 458 }
459 }; 459 };
460 template<> 460 template<>
461 struct hash<base::StringPiece16> { 461 struct hash<base::StringPiece16> {
462 std::size_t operator()(const base::StringPiece16& sp16) const { 462 std::size_t operator()(const base::StringPiece16& sp16) const {
463 HASH_STRING_PIECE(base::StringPiece16, sp16); 463 HASH_STRING_PIECE(base::StringPiece16, sp16);
464 } 464 }
465 }; 465 };
466 466
467 } // namespace BASE_HASH_NAMESPACE 467 } // namespace base_hash
468 468
469 #endif // BASE_STRINGS_STRING_PIECE_H_ 469 #endif // BASE_STRINGS_STRING_PIECE_H_
OLDNEW
« no previous file with comments | « base/containers/hash_tables.h ('k') | third_party/WebKit/Source/wtf/ASCIICType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698