diff options
Diffstat (limited to 'content/renderer/android/address_detector.h')
-rw-r--r-- | content/renderer/android/address_detector.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/content/renderer/android/address_detector.h b/content/renderer/android/address_detector.h index bd6002d..af05191 100644 --- a/content/renderer/android/address_detector.h +++ b/content/renderer/android/address_detector.h @@ -8,6 +8,7 @@ #include <vector> +#include "base/compiler_specific.h" #include "base/string_tokenizer.h" #include "content/renderer/android/content_detector.h" @@ -41,12 +42,8 @@ class AddressDetector : public ContentDetector { string16::const_iterator end; Word() {} - Word(const string16::const_iterator& begin_it, - const string16::const_iterator& end_it) - : begin(begin_it), - end(end_it) { - DCHECK(begin_it <= end_it); - } + Word(const string16::const_iterator& begin, + const string16::const_iterator& end); }; class HouseNumberParser { |