| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_FTP_FTP_DIRECTORY_LISTING_PARSER_H_ | 5 #ifndef NET_FTP_FTP_DIRECTORY_LISTING_PARSER_H_ |
| 6 #define NET_FTP_FTP_DIRECTORY_LISTING_PARSER_H_ | 6 #define NET_FTP_FTP_DIRECTORY_LISTING_PARSER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| 11 #include "base/time.h" | 11 #include "base/time.h" |
| 12 #include "net/ftp/ftp_server_type_histograms.h" | 12 #include "net/ftp/ftp_server_type_histograms.h" |
| 13 | 13 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 virtual bool EntryAvailable() const = 0; | 45 virtual bool EntryAvailable() const = 0; |
| 46 | 46 |
| 47 // Returns the next entry. It is an error to call this function unless | 47 // Returns the next entry. It is an error to call this function unless |
| 48 // EntryAvailable returns true. | 48 // EntryAvailable returns true. |
| 49 virtual FtpDirectoryListingEntry PopEntry() = 0; | 49 virtual FtpDirectoryListingEntry PopEntry() = 0; |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 } // namespace net | 52 } // namespace net |
| 53 | 53 |
| 54 #endif // NET_FTP_FTP_DIRECTORY_LISTING_PARSER_H_ | 54 #endif // NET_FTP_FTP_DIRECTORY_LISTING_PARSER_H_ |
| OLD | NEW |