| Index: ui/base/clipboard/clipboard_android.cc
|
| diff --git a/ui/base/clipboard/clipboard_android.cc b/ui/base/clipboard/clipboard_android.cc
|
| index f0971c448a007ddf37b5393fe5bd7e04bf1da205..3e56ecd61dabd478f56369ca6d6971e1f0afefad 100644
|
| --- a/ui/base/clipboard/clipboard_android.cc
|
| +++ b/ui/base/clipboard/clipboard_android.cc
|
| @@ -243,7 +243,7 @@ void Clipboard::Clear(ClipboardType type) {
|
| }
|
|
|
| void Clipboard::ReadAvailableTypes(ClipboardType type,
|
| - std::vector<string16>* types,
|
| + std::vector<base::string16>* types,
|
| bool* contains_filenames) const {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK_EQ(type, CLIPBOARD_TYPE_COPY_PASTE);
|
| @@ -259,7 +259,7 @@ void Clipboard::ReadAvailableTypes(ClipboardType type,
|
| *contains_filenames = false;
|
| }
|
|
|
| -void Clipboard::ReadText(ClipboardType type, string16* result) const {
|
| +void Clipboard::ReadText(ClipboardType type, base::string16* result) const {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK_EQ(type, CLIPBOARD_TYPE_COPY_PASTE);
|
| std::string utf8;
|
| @@ -275,7 +275,7 @@ void Clipboard::ReadAsciiText(ClipboardType type, std::string* result) const {
|
|
|
| // Note: |src_url| isn't really used. It is only implemented in Windows
|
| void Clipboard::ReadHTML(ClipboardType type,
|
| - string16* markup,
|
| + base::string16* markup,
|
| std::string* src_url,
|
| uint32* fragment_start,
|
| uint32* fragment_end) const {
|
| @@ -317,13 +317,13 @@ SkBitmap Clipboard::ReadImage(ClipboardType type) const {
|
| }
|
|
|
| void Clipboard::ReadCustomData(ClipboardType clipboard_type,
|
| - const string16& type,
|
| - string16* result) const {
|
| + const base::string16& type,
|
| + base::string16* result) const {
|
| DCHECK(CalledOnValidThread());
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| -void Clipboard::ReadBookmark(string16* title, std::string* url) const {
|
| +void Clipboard::ReadBookmark(base::string16* title, std::string* url) const {
|
| DCHECK(CalledOnValidThread());
|
| NOTIMPLEMENTED();
|
| }
|
|
|