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

Unified Diff: content/renderer/render_view_impl.cc

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/renderer/render_view_impl.h ('k') | content/renderer/renderer_main_platform_delegate_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index f060f1562868e274685098db7ca6b8501f4e3ac2..8d12163880dc699020cb51d6ce21ddbf56a01464 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -915,7 +915,7 @@ WebKit::WebView* RenderViewImpl::webview() const {
return static_cast<WebKit::WebView*>(webwidget());
}
-void RenderViewImpl::PluginCrashed(const FilePath& plugin_path,
+void RenderViewImpl::PluginCrashed(const base::FilePath& plugin_path,
base::ProcessId plugin_pid) {
Send(new ViewHostMsg_CrashedPlugin(routing_id_, plugin_path, plugin_pid));
}
@@ -4632,7 +4632,7 @@ void RenderViewImpl::LoadURLExternally(
// webkit_glue::WebPluginPageDelegate ------------------------------------------
webkit::npapi::WebPluginDelegate* RenderViewImpl::CreatePluginDelegate(
- const FilePath& file_path,
+ const base::FilePath& file_path,
const std::string& mime_type) {
if (!PluginChannelHost::IsListening()) {
LOG(ERROR) << "PluginChannelHost isn't listening";
@@ -4654,7 +4654,7 @@ webkit::npapi::WebPluginDelegate* RenderViewImpl::CreatePluginDelegate(
}
WebKit::WebPlugin* RenderViewImpl::CreatePluginReplacement(
- const FilePath& file_path) {
+ const base::FilePath& file_path) {
return GetContentClient()->renderer()->CreatePluginReplacement(
this, file_path);
}
@@ -5346,7 +5346,7 @@ void RenderViewImpl::OnCustomContextMenuAction(
void RenderViewImpl::OnEnumerateDirectoryResponse(
int id,
- const std::vector<FilePath>& paths) {
+ const std::vector<base::FilePath>& paths) {
if (!enumeration_completions_[id])
return;
@@ -5529,8 +5529,8 @@ void RenderViewImpl::OnGetAllSavableResourceLinksForCurrentPage(
void RenderViewImpl::OnGetSerializedHtmlDataForCurrentPageWithLocalLinks(
const std::vector<GURL>& links,
- const std::vector<FilePath>& local_paths,
- const FilePath& local_directory_name) {
+ const std::vector<base::FilePath>& local_paths,
+ const base::FilePath& local_directory_name) {
// Convert std::vector of GURLs to WebVector<WebURL>
WebVector<WebURL> weburl_links(links);
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/renderer_main_platform_delegate_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698