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

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

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 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/media_galleries_custom_bindings.cc
diff --git a/chrome/renderer/extensions/media_galleries_custom_bindings.cc b/chrome/renderer/extensions/media_galleries_custom_bindings.cc
index 2cd4b3aa1a26772961cf1f81935ce8d79d7cfa18..7b6b110bb56665a4a7193d271fd528e0b203c6df 100644
--- a/chrome/renderer/extensions/media_galleries_custom_bindings.cc
+++ b/chrome/renderer/extensions/media_galleries_custom_bindings.cc
@@ -30,11 +30,11 @@ void GetMediaFileSystemObject(const v8::FunctionCallbackInfo<v8::Value>& args) {
blink::WebLocalFrame::frameForCurrentContext();
const GURL origin = GURL(webframe->document().securityOrigin().toString());
std::string fs_name =
- fileapi::GetFileSystemName(origin, fileapi::kFileSystemTypeExternal);
+ storage::GetFileSystemName(origin, storage::kFileSystemTypeExternal);
fs_name.append("_");
fs_name.append(fs_mount);
const GURL root_url(
- fileapi::GetExternalFileSystemRootURIString(origin, fs_mount));
+ storage::GetExternalFileSystemRootURIString(origin, fs_mount));
args.GetReturnValue().Set(
blink::WebDOMFileSystem::create(webframe,
blink::WebFileSystemTypeExternal,

Powered by Google App Engine
This is Rietveld 408576698