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

Unified Diff: ui/base/dragdrop/os_exchange_data_provider_win.h

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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: ui/base/dragdrop/os_exchange_data_provider_win.h
diff --git a/ui/base/dragdrop/os_exchange_data_provider_win.h b/ui/base/dragdrop/os_exchange_data_provider_win.h
index 3381439c95bcd7bbf6b0bd36b4f73e0089023e9e..be7090b882f58dd3ab75faeb04b204e8b81dbfaa 100644
--- a/ui/base/dragdrop/os_exchange_data_provider_win.h
+++ b/ui/base/dragdrop/os_exchange_data_provider_win.h
@@ -46,7 +46,7 @@ class DataObjectImpl : public DownloadFileObserver,
size_t size() const { return contents_.size(); }
// DownloadFileObserver implementation:
- virtual void OnDownloadCompleted(const FilePath& file_path);
+ virtual void OnDownloadCompleted(const base::FilePath& file_path);
virtual void OnDownloadAborted();
// IDataObject implementation:
@@ -161,23 +161,23 @@ class UI_EXPORT OSExchangeDataProviderWin : public OSExchangeData::Provider {
// OSExchangeData::Provider methods.
virtual void SetString(const string16& data);
virtual void SetURL(const GURL& url, const string16& title);
- virtual void SetFilename(const FilePath& path);
+ virtual void SetFilename(const base::FilePath& path);
virtual void SetFilenames(
const std::vector<OSExchangeData::FileInfo>& filenames);
virtual void SetPickledData(OSExchangeData::CustomFormat format,
const Pickle& data);
- virtual void SetFileContents(const FilePath& filename,
+ virtual void SetFileContents(const base::FilePath& filename,
const std::string& file_contents);
virtual void SetHtml(const string16& html, const GURL& base_url);
virtual bool GetString(string16* data) const;
virtual bool GetURLAndTitle(GURL* url, string16* title) const;
- virtual bool GetFilename(FilePath* path) const;
+ virtual bool GetFilename(base::FilePath* path) const;
virtual bool GetFilenames(
std::vector<OSExchangeData::FileInfo>* filenames) const;
virtual bool GetPickledData(OSExchangeData::CustomFormat format,
Pickle* data) const;
- virtual bool GetFileContents(FilePath* filename,
+ virtual bool GetFileContents(base::FilePath* filename,
std::string* file_contents) const;
virtual bool GetHtml(string16* html, GURL* base_url) const;
virtual bool HasString() const;
« no previous file with comments | « ui/base/dragdrop/os_exchange_data_provider_gtk.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698