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

Side by Side Diff: net/tools/balsa/string_piece_utils.h

Issue 25085002: Break out balsa and epoll_server from net/tools/flip_server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 2 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
« no previous file with comments | « net/tools/balsa/split.cc ('k') | net/tools/epoll_server/epoll_server.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef NET_TOOLS_FLIP_SERVER_STRING_PIECE_UTILS_H_ 5 #ifndef NET_TOOLS_BALSA_STRING_PIECE_UTILS_H_
6 #define NET_TOOLS_FLIP_SERVER_STRING_PIECE_UTILS_H_ 6 #define NET_TOOLS_BALSA_STRING_PIECE_UTILS_H_
7 7
8 #include <ctype.h> 8 #include <ctype.h>
9 9
10 #include "base/port.h" 10 #include "base/port.h"
11 #include "base/strings/string_piece.h" 11 #include "base/strings/string_piece.h"
12 12
13 namespace net { 13 namespace net {
14 14
15 struct StringPieceCaseHash { 15 struct StringPieceCaseHash {
16 size_t operator()(const base::StringPiece& sp) const { 16 size_t operator()(const base::StringPiece& sp) const {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 bool operator()(const base::StringPiece& piece1, 72 bool operator()(const base::StringPiece& piece1,
73 const base::StringPiece& piece2) const { 73 const base::StringPiece& piece2) const {
74 return StringPieceUtils::EqualIgnoreCase(piece1, piece2); 74 return StringPieceUtils::EqualIgnoreCase(piece1, piece2);
75 } 75 }
76 }; 76 };
77 77
78 78
79 79
80 } // namespace net 80 } // namespace net
81 81
82 #endif // NET_TOOLS_FLIP_SERVER_STRING_PIECE_UTILS_H_ 82 #endif // NET_TOOLS_BALSA_STRING_PIECE_UTILS_H_
83 83
OLDNEW
« no previous file with comments | « net/tools/balsa/split.cc ('k') | net/tools/epoll_server/epoll_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698