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

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 2565283002: Fix webkitGetEntry for non-native files. (Closed)
Patch Set: . Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/renderer_host/render_widget_host_impl.h" 5 #include "content/browser/renderer_host/render_widget_host_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 8
9 #include <set> 9 #include <set>
10 #include <tuple> 10 #include <tuple>
(...skipping 2498 matching lines...) Expand 10 before | Expand all | Expand 10 after
2509 // Grant the permission iff the ID is valid. 2509 // Grant the permission iff the ID is valid.
2510 policy->GrantReadFileSystem(renderer_id, filesystem_id); 2510 policy->GrantReadFileSystem(renderer_id, filesystem_id);
2511 } 2511 }
2512 2512
2513 // Note: We are using the origin URL provided by the sender here. It may be 2513 // Note: We are using the origin URL provided by the sender here. It may be
2514 // different from the receiver's. 2514 // different from the receiver's.
2515 file_system_file.url = 2515 file_system_file.url =
2516 GURL(storage::GetIsolatedFileSystemRootURIString( 2516 GURL(storage::GetIsolatedFileSystemRootURIString(
2517 file_system_url.origin(), filesystem_id, std::string()) 2517 file_system_url.origin(), filesystem_id, std::string())
2518 .append(register_name)); 2518 .append(register_name));
2519 file_system_file.filesystem_id = base::UTF8ToUTF16(filesystem_id);
2519 } 2520 }
2520 } 2521 }
2521 2522
2522 } // namespace content 2523 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698