| Index: chrome/renderer/extensions/file_manager_private_custom_bindings.cc
|
| diff --git a/chrome/renderer/extensions/file_browser_private_custom_bindings.cc b/chrome/renderer/extensions/file_manager_private_custom_bindings.cc
|
| similarity index 85%
|
| rename from chrome/renderer/extensions/file_browser_private_custom_bindings.cc
|
| rename to chrome/renderer/extensions/file_manager_private_custom_bindings.cc
|
| index ff65c93adc47d69d5cd14ba1b8b3cf1ae3c632a8..7db65bbbe8019aa88b9981ea26a881488c196550 100644
|
| --- a/chrome/renderer/extensions/file_browser_private_custom_bindings.cc
|
| +++ b/chrome/renderer/extensions/file_manager_private_custom_bindings.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/renderer/extensions/file_browser_private_custom_bindings.h"
|
| +#include "chrome/renderer/extensions/file_manager_private_custom_bindings.h"
|
|
|
| #include <string>
|
|
|
| @@ -16,16 +16,16 @@
|
|
|
| namespace extensions {
|
|
|
| -FileBrowserPrivateCustomBindings::FileBrowserPrivateCustomBindings(
|
| +FileManagerPrivateCustomBindings::FileManagerPrivateCustomBindings(
|
| ScriptContext* context)
|
| : ObjectBackedNativeHandler(context) {
|
| RouteFunction(
|
| "GetFileSystem",
|
| - base::Bind(&FileBrowserPrivateCustomBindings::GetFileSystem,
|
| + base::Bind(&FileManagerPrivateCustomBindings::GetFileSystem,
|
| base::Unretained(this)));
|
| }
|
|
|
| -void FileBrowserPrivateCustomBindings::GetFileSystem(
|
| +void FileManagerPrivateCustomBindings::GetFileSystem(
|
| const v8::FunctionCallbackInfo<v8::Value>& args) {
|
| DCHECK(args.Length() == 2);
|
| DCHECK(args[0]->IsString());
|
|
|