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

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

Issue 12286020: Replace FilePath with base::FilePath. (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 | « content/public/browser/storage_partition.h ('k') | content/public/browser/web_contents_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 819e6282aaa7f306d51042567f71cca46f95aa34..1a26c8948e80b33e47fd2a9ac55cbf25ae6d95b7 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -314,15 +314,16 @@ class WebContents : public PageNavigator,
// Save page with the main HTML file path, the directory for saving resources,
// and the save type: HTML only or complete web page. Returns true if the
// saving process has been initiated successfully.
- 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) = 0;
// Generate an MHTML representation of the current page in the given file.
virtual void GenerateMHTML(
- const FilePath& file,
- const base::Callback<void(const FilePath& /* path to the MHTML file */,
- int64 /* size of the file */)>& callback) = 0;
+ const base::FilePath& file,
+ const base::Callback<void(
+ const base::FilePath& /* path to the MHTML file */,
+ int64 /* size of the file */)>& callback) = 0;
// Returns true if the active NavigationEntry's page_id equals page_id.
virtual bool IsActiveEntry(int32 page_id) = 0;
« no previous file with comments | « content/public/browser/storage_partition.h ('k') | content/public/browser/web_contents_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698