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

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

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/utility_process_host.h ('k') | content/public/common/child_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents_delegate.h
diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h
index ba57196e1c9f5270904b99360a42483b30e3fcf5..63e6380a7caa746ecca29f1bbed9f62ad4256222 100644
--- a/content/public/browser/web_contents_delegate.h
+++ b/content/public/browser/web_contents_delegate.h
@@ -21,10 +21,10 @@
#include "ui/gfx/native_widget_types.h"
#include "ui/gfx/rect_f.h"
-class FilePath;
class GURL;
namespace base {
+class FilePath;
class ListValue;
}
@@ -336,7 +336,7 @@ class CONTENT_EXPORT WebContentsDelegate {
// directory.
virtual void EnumerateDirectory(WebContents* web_contents,
int request_id,
- const FilePath& path) {}
+ const base::FilePath& path) {}
// Called when the renderer puts a tab into or out of fullscreen mode.
virtual void ToggleFullscreenModeForTab(WebContents* web_contents,
@@ -429,7 +429,7 @@ class CONTENT_EXPORT WebContentsDelegate {
virtual bool RequestPpapiBrokerPermission(
WebContents* web_contents,
const GURL& url,
- const FilePath& plugin_path,
+ const base::FilePath& plugin_path,
const base::Callback<void(bool)>& callback);
protected:
« no previous file with comments | « content/public/browser/utility_process_host.h ('k') | content/public/common/child_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698