summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-20 02:41:24 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-20 02:41:24 +0000
commit4cf0d9d1cee4b1fa850bbeade738828ab817da07 (patch)
treef6d3500ecc790c882e0454b50d754efd120239a9 /webkit
parentd462c1abab5865c44036ee3d189fb6fa0717fe3f (diff)
downloadchromium_src-4cf0d9d1cee4b1fa850bbeade738828ab817da07.zip
chromium_src-4cf0d9d1cee4b1fa850bbeade738828ab817da07.tar.gz
chromium_src-4cf0d9d1cee4b1fa850bbeade738828ab817da07.tar.bz2
base/i18n: Add namespace i18n to CharIterator.
BUG=None TEST=None Review URL: http://codereview.chromium.org/6355005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71910 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/plugins/ppapi/event_conversion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/plugins/ppapi/event_conversion.cc b/webkit/plugins/ppapi/event_conversion.cc
index a598bdb..f7d9139 100644
--- a/webkit/plugins/ppapi/event_conversion.cc
+++ b/webkit/plugins/ppapi/event_conversion.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 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.
@@ -94,7 +94,7 @@ void AppendCharEvent(const WebInputEvent& event,
utf16_char_count++;
// Make a separate PP_InputEvent for each Unicode character in the input.
- base::UTF16CharIterator iter(key_event.text, utf16_char_count);
+ base::i18n::UTF16CharIterator iter(key_event.text, utf16_char_count);
while (!iter.end()) {
PP_InputEvent result = GetPPEventWithCommonFieldsAndType(event);
result.u.character.modifier = key_event.modifiers;