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

Unified Diff: content/shell/shell_message_filter.cc

Issue 12208057: Add explicit base to 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/shell/shell_message_filter.h ('k') | content/shell/shell_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_message_filter.cc
diff --git a/content/shell/shell_message_filter.cc b/content/shell/shell_message_filter.cc
index 4450a7d7916d353fb04d8f96cf3051e43915c3c9..e9d344578829cb9c5ac7ef2e4ee40f5106baa5ef 100644
--- a/content/shell/shell_message_filter.cc
+++ b/content/shell/shell_message_filter.cc
@@ -31,13 +31,13 @@ bool ShellMessageFilter::OnMessageReceived(const IPC::Message& message,
return handled;
}
-void ShellMessageFilter::OnReadFileToString(const FilePath& local_file,
+void ShellMessageFilter::OnReadFileToString(const base::FilePath& local_file,
std::string* contents) {
file_util::ReadFileToString(local_file, contents);
}
void ShellMessageFilter::OnRegisterIsolatedFileSystem(
- const std::vector<FilePath>& absolute_filenames,
+ const std::vector<base::FilePath>& absolute_filenames,
std::string* filesystem_id) {
fileapi::IsolatedContext::FileInfoSet files;
ChildProcessSecurityPolicy* policy =
« no previous file with comments | « content/shell/shell_message_filter.h ('k') | content/shell/shell_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698