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

Unified Diff: ui/base/dragdrop/os_exchange_data_provider_aura.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
« no previous file with comments | « ui/base/dragdrop/os_exchange_data.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/dragdrop/os_exchange_data_provider_aura.h
diff --git a/ui/base/dragdrop/os_exchange_data_provider_aura.h b/ui/base/dragdrop/os_exchange_data_provider_aura.h
index 4b431d2f3f5489c29072ae7b41ce7e2614539398..f57765373efa93050e58552b68aae908229eb5af 100644
--- a/ui/base/dragdrop/os_exchange_data_provider_aura.h
+++ b/ui/base/dragdrop/os_exchange_data_provider_aura.h
@@ -27,14 +27,14 @@ class UI_EXPORT OSExchangeDataProviderAura : public OSExchangeData::Provider {
// Overridden from OSExchangeData::Provider:
virtual void SetString(const string16& data) OVERRIDE;
virtual void SetURL(const GURL& url, const string16& title) OVERRIDE;
- virtual void SetFilename(const FilePath& path) OVERRIDE;
+ virtual void SetFilename(const base::FilePath& path) OVERRIDE;
virtual void SetFilenames(
const std::vector<OSExchangeData::FileInfo>& filenames) OVERRIDE;
virtual void SetPickledData(OSExchangeData::CustomFormat format,
const Pickle& data) OVERRIDE;
virtual bool GetString(string16* data) const OVERRIDE;
virtual bool GetURLAndTitle(GURL* url, string16* title) const OVERRIDE;
- virtual bool GetFilename(FilePath* path) const OVERRIDE;
+ virtual bool GetFilename(base::FilePath* path) const OVERRIDE;
virtual bool GetFilenames(
std::vector<OSExchangeData::FileInfo>* filenames) const OVERRIDE;
virtual bool GetPickledData(OSExchangeData::CustomFormat format,
@@ -45,9 +45,9 @@ class UI_EXPORT OSExchangeDataProviderAura : public OSExchangeData::Provider {
virtual bool HasCustomFormat(
OSExchangeData::CustomFormat format) const OVERRIDE;
#if defined(OS_WIN)
- virtual void SetFileContents(const FilePath& filename,
+ virtual void SetFileContents(const base::FilePath& filename,
const std::string& file_contents) OVERRIDE;
- virtual bool GetFileContents(FilePath* filename,
+ virtual bool GetFileContents(base::FilePath* filename,
std::string* file_contents) const OVERRIDE;
virtual bool HasFileContents() const OVERRIDE;
virtual void SetDownloadFileInfo(
« no previous file with comments | « ui/base/dragdrop/os_exchange_data.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698