Index: base/i18n/break_iterator.cc |
=================================================================== |
--- base/i18n/break_iterator.cc (revision 79302) |
+++ base/i18n/break_iterator.cc (working copy) |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 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. |
@@ -33,7 +33,7 @@ |
case BREAK_WORD: |
break_type = UBRK_WORD; |
break; |
- case BREAK_SPACE: |
+ case BREAK_LINE: |
case BREAK_NEWLINE: |
break_type = UBRK_LINE; |
break; |
@@ -59,7 +59,7 @@ |
prev_ = pos_; |
switch (break_type_) { |
case BREAK_WORD: |
- case BREAK_SPACE: |
+ case BREAK_LINE: |
pos = ubrk_next(static_cast<UBreakIterator*>(iter_)); |
if (pos == UBRK_DONE) { |
pos_ = npos; |