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

Unified Diff: chrome/browser/renderer_host/browser_render_process_host.cc

Issue 5259003: On windows filepaths need \\?\ prefix to allow extended file path names. Fix ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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
Index: chrome/browser/renderer_host/browser_render_process_host.cc
===================================================================
--- chrome/browser/renderer_host/browser_render_process_host.cc (revision 67172)
+++ chrome/browser/renderer_host/browser_render_process_host.cc (working copy)
@@ -240,8 +240,9 @@
// PLATFORM_FILE_DELETE_ON_CLOSE are not granted, because no existing API
// requests them.
ChildProcessSecurityPolicy::GetInstance()->GrantPermissionsForFile(
- id(), profile->GetPath().Append(
- fileapi::FileSystemPathManager::kFileSystemDirectory),
+ id(),
+ fileapi::FileSystemPathManager::GetFileSystemCommonRootDirectory(
+ profile->GetPath()),
kinuko (google) 2010/11/25 03:36:47 nit: indent
Kavita Kanetkar 2010/11/25 03:42:05 Done.
base::PLATFORM_FILE_OPEN |
base::PLATFORM_FILE_CREATE |
base::PLATFORM_FILE_OPEN_ALWAYS |
« no previous file with comments | « no previous file | webkit/fileapi/file_system_operation_unittest.cc » ('j') | webkit/fileapi/file_system_path_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698