| Index: net/ftp/ftp_directory_listing_parser_netware_unittest.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parser_netware_unittest.cc b/net/ftp/ftp_directory_listing_parser_netware_unittest.cc
|
| index 6570846811a615753b9665f8f248e6729560529d..f5e4a3536ee0e4e3f68036613c94dc8dc93630f0 100644
|
| --- a/net/ftp/ftp_directory_listing_parser_netware_unittest.cc
|
| +++ b/net/ftp/ftp_directory_listing_parser_netware_unittest.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/format_macros.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "net/ftp/ftp_directory_listing_parser_netware.h"
|
|
|
| @@ -27,7 +28,8 @@ TEST_F(FtpDirectoryListingParserNetwareTest, Good) {
|
| 1994, 11, 11, 18, 25 },
|
| };
|
| for (size_t i = 0; i < arraysize(good_cases); i++) {
|
| - SCOPED_TRACE(StringPrintf("Test[%" PRIuS "]: %s", i, good_cases[i].input));
|
| + SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS "]: %s", i,
|
| + good_cases[i].input));
|
|
|
| net::FtpDirectoryListingParserNetware parser(mock_current_time);
|
| // The parser requires a "total n" like before accepting regular input.
|
|
|