Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: content/renderer/renderer_clipboard_client.h

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_widget.cc ('k') | content/renderer/renderer_clipboard_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/renderer_clipboard_client.h
diff --git a/content/renderer/renderer_clipboard_client.h b/content/renderer/renderer_clipboard_client.h
index 1635a2bfb1738201c07e18e823dfde49b4e539cd..96d05b2621a7c1f14714a27b02e667cb5442d2f7 100644
--- a/content/renderer/renderer_clipboard_client.h
+++ b/content/renderer/renderer_clipboard_client.h
@@ -22,22 +22,22 @@ class RendererClipboardClient : public ClipboardClient {
ui::ClipboardType type) OVERRIDE;
virtual void Clear(ui::ClipboardType type) OVERRIDE;
virtual void ReadAvailableTypes(ui::ClipboardType type,
- std::vector<string16>* types,
+ std::vector<base::string16>* types,
bool* contains_filenames) OVERRIDE;
virtual void ReadText(ui::ClipboardType type,
- string16* result) OVERRIDE;
+ base::string16* result) OVERRIDE;
virtual void ReadAsciiText(ui::ClipboardType type,
std::string* result) OVERRIDE;
virtual void ReadHTML(ui::ClipboardType type,
- string16* markup,
+ base::string16* markup,
GURL* url,
uint32* fragment_start,
uint32* fragment_end) OVERRIDE;
virtual void ReadRTF(ui::ClipboardType type, std::string* result) OVERRIDE;
virtual void ReadImage(ui::ClipboardType type, std::string* data) OVERRIDE;
virtual void ReadCustomData(ui::ClipboardType clipboard_type,
- const string16& type,
- string16* data) OVERRIDE;
+ const base::string16& type,
+ base::string16* data) OVERRIDE;
virtual void ReadData(const ui::Clipboard::FormatType& format,
std::string* data) OVERRIDE;
virtual WriteContext* CreateWriteContext() OVERRIDE;
« no previous file with comments | « content/renderer/render_widget.cc ('k') | content/renderer/renderer_clipboard_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698