| OLD | NEW |
| 1 // 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_FLIP_SERVER_STRING_PIECE_UTILS_H_ |
| 6 #define NET_TOOLS_FLIP_SERVER_STRING_PIECE_UTILS_H_ | 6 #define NET_TOOLS_FLIP_SERVER_STRING_PIECE_UTILS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <ctype.h> | 9 #include <ctype.h> |
| 10 | 10 |
| 11 #include "base/port.h" | 11 #include "base/port.h" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 return StringPieceUtils::EqualIgnoreCase(piece1, piece2); | 73 return StringPieceUtils::EqualIgnoreCase(piece1, piece2); |
| 74 } | 74 } |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 | 77 |
| 78 | 78 |
| 79 } // namespace net | 79 } // namespace net |
| 80 | 80 |
| 81 #endif // NET_TOOLS_FLIP_SERVER_STRING_PIECE_UTILS_H_ | 81 #endif // NET_TOOLS_FLIP_SERVER_STRING_PIECE_UTILS_H_ |
| 82 | 82 |
| OLD | NEW |