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

Unified Diff: content/browser/web_contents/web_contents_impl.h

Issue 12213066: Use base namespace for FilePath in content/browser (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: content/browser/web_contents/web_contents_impl.h
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
index bd4769aad0ab8aa944e71e92885045510de2a8ec..d05c678e3ee54d0f4ef026db32c3ce3f13160ac1 100644
--- a/content/browser/web_contents/web_contents_impl.h
+++ b/content/browser/web_contents/web_contents_impl.h
@@ -239,12 +239,13 @@ class CONTENT_EXPORT WebContentsImpl
virtual InterstitialPage* GetInterstitialPage() const OVERRIDE;
virtual bool IsSavable() OVERRIDE;
virtual void OnSavePage() OVERRIDE;
- virtual bool SavePage(const FilePath& main_file,
- const FilePath& dir_path,
+ virtual bool SavePage(const base::FilePath& main_file,
+ const base::FilePath& dir_path,
SavePageType save_type) OVERRIDE;
virtual void GenerateMHTML(
- const FilePath& file,
- const base::Callback<void(const FilePath&, int64)>& callback) OVERRIDE;
+ const base::FilePath& file,
+ const base::Callback<void(const base::FilePath&, int64)>& callback)
+ OVERRIDE;
virtual bool IsActiveEntry(int32 page_id) OVERRIDE;
virtual const std::string& GetContentsMimeType() const OVERRIDE;
@@ -542,7 +543,7 @@ class CONTENT_EXPORT WebContentsImpl
int maximum_percent,
bool remember);
void OnSaveURL(const GURL& url, const Referrer& referrer);
- void OnEnumerateDirectory(int request_id, const FilePath& path);
+ void OnEnumerateDirectory(int request_id, const base::FilePath& path);
void OnJSOutOfMemory();
void OnRegisterProtocolHandler(const std::string& protocol,
@@ -561,20 +562,21 @@ class CONTENT_EXPORT WebContentsImpl
void OnOpenDateTimeDialog(int type, const std::string& value);
#endif
- void OnCrashedPlugin(const FilePath& plugin_path, base::ProcessId plugin_pid);
+ void OnCrashedPlugin(const base::FilePath& plugin_path,
+ base::ProcessId plugin_pid);
void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy);
void OnOpenColorChooser(int color_chooser_id, SkColor color);
void OnEndColorChooser(int color_chooser_id);
void OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color);
void OnPepperPluginHung(int plugin_child_id,
- const FilePath& path,
+ const base::FilePath& path,
bool is_hung);
void OnWebUISend(const GURL& source_url,
const std::string& name,
const base::ListValue& args);
void OnRequestPpapiBrokerPermission(int request_id,
const GURL& url,
- const FilePath& plugin_path);
+ const base::FilePath& plugin_path);
void OnBrowserPluginAllocateInstanceID(const IPC::Message& message,
int request_id);
void OnDidDownloadFavicon(int id,
« no previous file with comments | « content/browser/web_contents/web_contents_drag_win.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698