| 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..0a5a6f08be212e15dc438b7a8e89fa6b59660689 100644
|
| --- a/chrome/renderer/extensions/media_galleries_custom_bindings.cc
|
| +++ b/chrome/renderer/extensions/media_galleries_custom_bindings.cc
|
| @@ -11,7 +11,7 @@
|
| #include "third_party/WebKit/public/web/WebDocument.h"
|
| #include "third_party/WebKit/public/web/WebLocalFrame.h"
|
| #include "v8/include/v8.h"
|
| -#include "webkit/common/fileapi/file_system_util.h"
|
| +#include "storage/common/fileapi/file_system_util.h"
|
|
|
| namespace extensions {
|
|
|
| @@ -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,
|
|
|