diff options
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/plugins/ppapi/event_conversion.cc | 4 |
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; |