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

Unified Diff: webkit/glue/webdropdata.cc

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months 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
Index: webkit/glue/webdropdata.cc
diff --git a/webkit/glue/webdropdata.cc b/webkit/glue/webdropdata.cc
index 3f2062240eb4833a86e7eb253475310e88b20d78..5cbfa8a4481b42f9cd1579107f11c42aa85df887 100644
--- a/webkit/glue/webdropdata.cc
+++ b/webkit/glue/webdropdata.cc
@@ -24,8 +24,8 @@ using WebKit::WebVector;
WebDropData::FileInfo::FileInfo() {
}
-WebDropData::FileInfo::FileInfo(const string16& path,
- const string16& display_name)
+WebDropData::FileInfo::FileInfo(const base::string16& path,
+ const base::string16& display_name)
: path(path),
display_name(display_name) {
}
@@ -128,7 +128,8 @@ WebDragData WebDropData::ToDragData() const {
item_list.push_back(item);
}
- for (std::map<string16, string16>::const_iterator it = custom_data.begin();
+ for (std::map<base::string16, base::string16>::const_iterator it =
+ custom_data.begin();
it != custom_data.end();
++it) {
WebDragData::Item item;

Powered by Google App Engine
This is Rietveld 408576698