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

Unified Diff: ui/base/dragdrop/gtk_dnd_util_unittest.cc

Issue 17951002: ui/base/dragdrop: Use base::string16 now that string16 was moved into base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « ui/base/dragdrop/gtk_dnd_util.cc ('k') | ui/base/dragdrop/os_exchange_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/dragdrop/gtk_dnd_util_unittest.cc
diff --git a/ui/base/dragdrop/gtk_dnd_util_unittest.cc b/ui/base/dragdrop/gtk_dnd_util_unittest.cc
index 4587f5a033a32177eeec8ab956c96dd15c0b1a8b..bd5e0aec8030a18996490acf87c172ef51b8dd01 100644
--- a/ui/base/dragdrop/gtk_dnd_util_unittest.cc
+++ b/ui/base/dragdrop/gtk_dnd_util_unittest.cc
@@ -27,7 +27,7 @@ TEST(GtkDndUtilTest, ExtractNamedURLValid) {
data.length = pickle.size();
GURL url;
- string16 title;
+ base::string16 title;
ASSERT_EQ(true, ui::ExtractNamedURL(&data, &url, &title));
EXPECT_EQ(UTF8ToUTF16(kTitle), title);
EXPECT_EQ(GURL(kUrl), url);
@@ -47,13 +47,13 @@ TEST(GtkDndUtilTest, ExtractNamedURLInvalidURL) {
data.length = pickle.size();
GURL url;
- string16 title;
+ base::string16 title;
EXPECT_FALSE(ui::ExtractNamedURL(&data, &url, &title));
}
TEST(GtkDndUtilTest, ExtractNamedURLInvalidInput) {
GURL url;
- string16 title;
+ base::string16 title;
GtkSelectionData data;
data.data = NULL;
data.length = 0;
« no previous file with comments | « ui/base/dragdrop/gtk_dnd_util.cc ('k') | ui/base/dragdrop/os_exchange_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698