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

Unified Diff: content/public/common/sandbox_init.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/common/child_process_host.h ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/sandbox_init.h
diff --git a/content/public/common/sandbox_init.h b/content/public/common/sandbox_init.h
index 38224a2c940b672a9e546c1a82b5aaebf4b64773..de58f46432fd8e40b3cd4d4ed17c2861349c9afd 100644
--- a/content/public/common/sandbox_init.h
+++ b/content/public/common/sandbox_init.h
@@ -11,7 +11,10 @@
#include "ipc/ipc_platform_file.h"
class CommandLine;
+
+namespace base {
class FilePath;
+}
namespace sandbox {
struct SandboxInterfaceInfo;
@@ -54,7 +57,7 @@ CONTENT_EXPORT bool BrokerAddTargetPeer(HANDLE peer_process);
// and returns a handle to it.
CONTENT_EXPORT base::ProcessHandle StartProcessWithAccess(
CommandLine* cmd_line,
- const FilePath& exposed_dir);
+ const base::FilePath& exposed_dir);
#elif defined(OS_MACOSX)
@@ -73,7 +76,7 @@ CONTENT_EXPORT base::ProcessHandle StartProcessWithAccess(
// occurred. If process_type isn't one that needs sandboxing, no action is
// taken and true is always returned.
CONTENT_EXPORT bool InitializeSandbox(int sandbox_type,
- const FilePath& allowed_path);
+ const base::FilePath& allowed_path);
#elif defined(OS_LINUX)
« no previous file with comments | « content/public/common/child_process_host.h ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698