Index: ppapi/nacl_irt/manifest_service.cc |
diff --git a/ppapi/nacl_irt/manifest_service.cc b/ppapi/nacl_irt/manifest_service.cc |
index 3c537b3924475ddf6470633ab720ef1387d91d0d..cc5a2678551ad639eeab354ced3cf9be740372b6 100644 |
--- a/ppapi/nacl_irt/manifest_service.cc |
+++ b/ppapi/nacl_irt/manifest_service.cc |
@@ -21,8 +21,6 @@ |
namespace ppapi { |
-const char kFilePrefix[] = "files/"; |
- |
// IPC channel is asynchronously set up. So, the NaCl process may try to |
// send a OpenResource message to the host before the connection is |
// established. In such a case, it is necessary to wait for the set up |
@@ -101,7 +99,7 @@ bool ManifestService::OpenResource(const char* file, int* fd) { |
uint64_t file_token_lo = 0; |
uint64_t file_token_hi = 0; |
if (!filter_->Send(new PpapiHostMsg_OpenResource( |
- std::string(kFilePrefix) + file, |
+ file, |
&ipc_fd, |
&file_token_lo, |
&file_token_hi))) { |