summaryrefslogtreecommitdiffstats
path: root/content/browser/web_contents/web_contents_drag_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/web_contents/web_contents_drag_win.cc')
-rw-r--r--content/browser/web_contents/web_contents_drag_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/web_contents/web_contents_drag_win.cc b/content/browser/web_contents/web_contents_drag_win.cc
index 3a59057..ffc8713 100644
--- a/content/browser/web_contents/web_contents_drag_win.cc
+++ b/content/browser/web_contents/web_contents_drag_win.cc
@@ -227,7 +227,7 @@ void WebContentsDragWin::PrepareDragForDownload(
const GURL& page_url,
const std::string& page_encoding) {
// Parse the download metadata.
- string16 mime_type;
+ base::string16 mime_type;
base::FilePath file_name;
GURL download_url;
if (!ParseDownloadMetadata(drop_data.download_metadata,
@@ -284,7 +284,7 @@ void WebContentsDragWin::PrepareDragForFileContents(
// Images without ALT text will only have a file extension so we need to
// synthesize one from the provided extension and URL.
if (file_name.BaseName().RemoveExtension().empty()) {
- const string16 extension = file_name.Extension();
+ const base::string16 extension = file_name.Extension();
// Retrieve the name from the URL.
file_name = base::FilePath(
net::GetSuggestedFilename(drop_data.url, "", "", "", "", ""));