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

Unified Diff: chrome/renderer/extensions/file_system_natives.cc

Issue 10879002: kFileSystemTypeIsolated should be only used in the URL exposed to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 8 years, 4 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
Index: chrome/renderer/extensions/file_system_natives.cc
diff --git a/chrome/renderer/extensions/file_system_natives.cc b/chrome/renderer/extensions/file_system_natives.cc
index 88faeba421084326a86f62e7a306678b0a0621a2..ff34be7965c977d508256e50463d278d6d7a7517 100644
--- a/chrome/renderer/extensions/file_system_natives.cc
+++ b/chrome/renderer/extensions/file_system_natives.cc
@@ -34,8 +34,9 @@ static v8::Handle<v8::Value> GetIsolatedFileSystem(
std::string name(fileapi::GetIsolatedFileSystemName(context_url.GetOrigin(),
file_system_id));
- std::string root(fileapi::GetFileSystemRootURI(context_url.GetOrigin(),
- fileapi::kFileSystemTypeIsolated).spec());
+ std::string root(fileapi::GetFileSystemRootURI(
+ context_url.GetOrigin(),
+ fileapi::kFileSystemTypeIsolated).spec());
root.append(file_system_id);
root.append("/");
« no previous file with comments | « chrome/browser/extensions/platform_app_launcher.cc ('k') | content/browser/fileapi/fileapi_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698