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

Unified Diff: content/shell/shell_messages.h

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.cc ('k') | content/shell/shell_network_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_messages.h
diff --git a/content/shell/shell_messages.h b/content/shell/shell_messages.h
index e125b27a9c553fee4b2b8aa9558852f9e0c25eb3..ac2b98eedf236ac3bc9713c39e12dc68c19bafe6 100644
--- a/content/shell/shell_messages.h
+++ b/content/shell/shell_messages.h
@@ -14,7 +14,7 @@
// Sets the current working directory to use for layout tests.
IPC_MESSAGE_ROUTED1(ShellViewMsg_SetCurrentWorkingDirectory,
- FilePath /* current_working_directory */)
+ base::FilePath /* current_working_directory */)
// Tells the render view to capture a text dump of the page. The render view
// responds with a ShellViewHostMsg_TextDump.
@@ -33,7 +33,7 @@ IPC_MESSAGE_CONTROL0(ShellViewMsg_ResetAll)
// Sets the path to the WebKit checkout.
IPC_MESSAGE_CONTROL1(ShellViewMsg_SetWebKitSourceDir,
- FilePath /* webkit source dir */)
+ base::FilePath /* webkit source dir */)
// Send a text dump of the WebContents to the render host.
IPC_MESSAGE_ROUTED1(ShellViewHostMsg_TextDump,
@@ -53,7 +53,7 @@ IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage,
// Read a file and returns its contents.
IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_ReadFileToString,
- FilePath /* local path */,
+ base::FilePath /* local path */,
std::string /* contents */)
// The following messages correspond to methods of the testRunner.
@@ -71,7 +71,7 @@ IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CanOpenWindows)
IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ShowWebInspector)
IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseWebInspector)
IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_RegisterIsolatedFileSystem,
- std::vector<FilePath> /* absolute_filenames */,
+ std::vector<base::FilePath> /* absolute_filenames */,
std::string /* filesystem_id */)
IPC_MESSAGE_ROUTED2(ShellViewHostMsg_NotImplemented,
« no previous file with comments | « content/shell/shell_message_filter.cc ('k') | content/shell/shell_network_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698