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

Side by Side Diff: net/ftp/ftp_directory_listing_parser_vms_unittest.cc

Issue 12473004: src/: Update the remaining include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "net/ftp/ftp_directory_listing_parser_unittest.h" 5 #include "net/ftp/ftp_directory_listing_parser_unittest.h"
6 6
7 #include "base/format_macros.h" 7 #include "base/format_macros.h"
8 #include "base/string_split.h"
9 #include "base/string_util.h" 8 #include "base/string_util.h"
10 #include "base/stringprintf.h" 9 #include "base/stringprintf.h"
10 #include "base/strings/string_split.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
12 #include "net/ftp/ftp_directory_listing_parser_vms.h" 12 #include "net/ftp/ftp_directory_listing_parser_vms.h"
13 13
14 namespace net { 14 namespace net {
15 15
16 namespace { 16 namespace {
17 17
18 typedef FtpDirectoryListingParserTest FtpDirectoryListingParserVmsTest; 18 typedef FtpDirectoryListingParserTest FtpDirectoryListingParserVmsTest;
19 19
20 TEST_F(FtpDirectoryListingParserVmsTest, Good) { 20 TEST_F(FtpDirectoryListingParserVmsTest, Good) {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 std::vector<FtpDirectoryListingEntry> entries; 158 std::vector<FtpDirectoryListingEntry> entries;
159 EXPECT_FALSE(ParseFtpDirectoryListingVms(lines, 159 EXPECT_FALSE(ParseFtpDirectoryListingVms(lines,
160 &entries)); 160 &entries));
161 } 161 }
162 } 162 }
163 } 163 }
164 164
165 } // namespace 165 } // namespace
166 166
167 } // namespace net 167 } // namespace net
OLDNEW
« no previous file with comments | « net/ftp/ftp_directory_listing_parser_vms.cc ('k') | net/ftp/ftp_directory_listing_parser_windows.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698