| Index: net/ftp/ftp_util.h
|
| diff --git a/net/ftp/ftp_util.h b/net/ftp/ftp_util.h
|
| index c71b919b406fbf38f35c591b37f4efea3f97c5bd..2a73c685565244938b28ce926a15d2e274cb0f4c 100644
|
| --- a/net/ftp/ftp_util.h
|
| +++ b/net/ftp/ftp_util.h
|
| @@ -7,6 +7,8 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/string16.h"
|
| +
|
| namespace net {
|
|
|
| class FtpUtil {
|
| @@ -19,6 +21,10 @@ class FtpUtil {
|
|
|
| // Convert VMS path to Unix-style path.
|
| static std::string VMSPathToUnix(const std::string& vms_path);
|
| +
|
| + // Convert three-letter month abbreviation (like Nov) to its number (in range
|
| + // 1-12).
|
| + static bool ThreeLetterMonthToNumber(const string16& text, int* number);
|
| };
|
|
|
| } // namespace net
|
|
|