diff options
author | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 23:42:57 +0000 |
---|---|---|
committer | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 23:42:57 +0000 |
commit | d00fad03e436f877df1e9a8672df0946ef0b3dc5 (patch) | |
tree | 809b00f99184541069bd69c5ee2ba33115b50388 /ppapi | |
parent | 1b45916902b69545502bf594869db822589cd804 (diff) | |
download | chromium_src-d00fad03e436f877df1e9a8672df0946ef0b3dc5.zip chromium_src-d00fad03e436f877df1e9a8672df0946ef0b3dc5.tar.gz chromium_src-d00fad03e436f877df1e9a8672df0946ef0b3dc5.tar.bz2 |
Add base:: to string16 in ppapi/.
R=brettw@chromium.org
BUG=329295
Review URL: https://codereview.chromium.org/118563003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/pdf_resource_unittest.cc | 4 | ||||
-rw-r--r-- | ppapi/shared_impl/private/ppb_char_set_shared.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/pdf_resource_unittest.cc b/ppapi/proxy/pdf_resource_unittest.cc index 3ac60d6..d0a2ed3 100644 --- a/ppapi/proxy/pdf_resource_unittest.cc +++ b/ppapi/proxy/pdf_resource_unittest.cc @@ -65,8 +65,8 @@ TEST_F(PDFResourceTest, SearchString) { new PDFResource(Connection(&sink(), &sink()), pp_instance())); pdf_resource->SetLocaleForTest("en-US"); - string16 input; - string16 term; + base::string16 input; + base::string16 term; UTF8ToUTF16("abcdefabcdef", 12, &input); UTF8ToUTF16("bc", 2, &term); diff --git a/ppapi/shared_impl/private/ppb_char_set_shared.cc b/ppapi/shared_impl/private/ppb_char_set_shared.cc index 2fda8aa..c45c1ba 100644 --- a/ppapi/shared_impl/private/ppb_char_set_shared.cc +++ b/ppapi/shared_impl/private/ppb_char_set_shared.cc @@ -220,7 +220,7 @@ PP_Bool PPB_CharSet_Shared::CharSetToUTF16( // We can convert this call to the implementation in base to avoid code // duplication, although this does introduce an extra copy of the data. - string16 output; + base::string16 output; if (!base::CodepageToUTF16(std::string(input, input_len), input_char_set, base_on_error, &output)) { *output_utf16_length = 0; |