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

Unified Diff: Source/web/WebFileChooserCompletionImpl.cpp

Issue 468083003: Cleanup namespace usage in Source/web/Web[A-H]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing Created 6 years, 4 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 | « Source/web/WebEmbeddedWorkerImpl.cpp ('k') | Source/web/WebFontDescription.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFileChooserCompletionImpl.cpp
diff --git a/Source/web/WebFileChooserCompletionImpl.cpp b/Source/web/WebFileChooserCompletionImpl.cpp
index 1d813fb8dcb1abe88f245f5ddd155cf55bb6b1c3..0791fb08cb1feb5541904464c54bd6350174914f 100644
--- a/Source/web/WebFileChooserCompletionImpl.cpp
+++ b/Source/web/WebFileChooserCompletionImpl.cpp
@@ -33,7 +33,7 @@
namespace blink {
-WebFileChooserCompletionImpl::WebFileChooserCompletionImpl(PassRefPtr<blink::FileChooser> chooser)
+WebFileChooserCompletionImpl::WebFileChooserCompletionImpl(PassRefPtr<FileChooser> chooser)
: m_fileChooser(chooser)
{
}
@@ -44,9 +44,9 @@ WebFileChooserCompletionImpl::~WebFileChooserCompletionImpl()
void WebFileChooserCompletionImpl::didChooseFile(const WebVector<WebString>& fileNames)
{
- Vector<blink::FileChooserFileInfo> fileInfo;
+ Vector<FileChooserFileInfo> fileInfo;
for (size_t i = 0; i < fileNames.size(); ++i)
- fileInfo.append(blink::FileChooserFileInfo(fileNames[i]));
+ fileInfo.append(FileChooserFileInfo(fileNames[i]));
m_fileChooser->chooseFiles(fileInfo);
// This object is no longer needed.
delete this;
@@ -54,9 +54,9 @@ void WebFileChooserCompletionImpl::didChooseFile(const WebVector<WebString>& fil
void WebFileChooserCompletionImpl::didChooseFile(const WebVector<SelectedFileInfo>& files)
{
- Vector<blink::FileChooserFileInfo> fileInfo;
+ Vector<FileChooserFileInfo> fileInfo;
for (size_t i = 0; i < files.size(); ++i)
- fileInfo.append(blink::FileChooserFileInfo(files[i].path, files[i].displayName));
+ fileInfo.append(FileChooserFileInfo(files[i].path, files[i].displayName));
m_fileChooser->chooseFiles(fileInfo);
// This object is no longer needed.
delete this;
« no previous file with comments | « Source/web/WebEmbeddedWorkerImpl.cpp ('k') | Source/web/WebFontDescription.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698