OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_COMMON_ADDRESS_PARSER_H_ | 5 #ifndef CONTENT_COMMON_ADDRESS_PARSER_H_ |
6 #define CONTENT_COMMON_ADDRESS_PARSER_H_ | 6 #define CONTENT_COMMON_ADDRESS_PARSER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/string16.h" | 8 #include "base/string16.h" |
10 | 9 |
11 namespace content { | 10 namespace content { |
12 | 11 |
13 // Provides methods to find a geographical address (currently US only) | 12 // Provides methods to find a geographical address (currently US only) |
14 // in a given text string. | 13 // in a given text string. |
15 namespace address_parser { | 14 namespace address_parser { |
16 | 15 |
17 // Find the first address in some chunk of text. If an address is found in | 16 // Find the first address in some chunk of text. If an address is found in |
18 // |text| true is returned and the address is copied into |address|. | 17 // |text| true is returned and the address is copied into |address|. |
19 // Otherwise, false is returned. | 18 // Otherwise, false is returned. |
20 bool FindAddress(const string16& text, string16* address); | 19 bool FindAddress(const string16& text, string16* address); |
21 | 20 |
22 // Find the first address in some chunk of test. |begin| is the starting | 21 // Find the first address in some chunk of test. |begin| is the starting |
23 // position to search from, |end| is the position to search to. |start_pos| | 22 // position to search from, |end| is the position to search to. |start_pos| |
24 // and |end_pos| are set to the starting and ending position of the address, | 23 // and |end_pos| are set to the starting and ending position of the address, |
25 // if found. | 24 // if found. |
26 bool FindAddress(const string16::const_iterator& begin, | 25 bool FindAddress(const string16::const_iterator& begin, |
27 const string16::const_iterator& end, | 26 const string16::const_iterator& end, |
28 size_t* start_pos, | 27 size_t* start_pos, |
29 size_t* end_pos); | 28 size_t* end_pos); |
30 | 29 |
31 } // namespace address_parser | 30 } // namespace address_parser |
32 | 31 |
33 } // namespace content | 32 } // namespace content |
34 | 33 |
35 #endif // CONTENT_COMMON_ADDRESS_PARSER_H_ | 34 #endif // CONTENT_COMMON_ADDRESS_PARSER_H_ |
OLD | NEW |