| OLD | NEW |
| 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 "chrome/renderer/extensions/file_browser_handler_custom_bindings.h" | 5 #include "chrome/renderer/extensions/file_browser_handler_custom_bindings.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "grit/renderer_resources.h" | 11 #include "grit/renderer_resources.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste
m.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
| 15 | 15 |
| 16 namespace { | 16 namespace extensions { |
| 17 | 17 |
| 18 v8::Handle<v8::Value> GetExternalFileEntry(const v8::Arguments& args) { | 18 FileBrowserHandlerCustomBindings::FileBrowserHandlerCustomBindings( |
| 19 int dependency_count, |
| 20 const char** dependencies) |
| 21 : ChromeV8Extension("extensions/file_browser_handler_custom_bindings.js", |
| 22 IDR_FILE_BROWSER_HANDLER_CUSTOM_BINDINGS_JS, |
| 23 dependency_count, |
| 24 dependencies, |
| 25 NULL) {} |
| 26 |
| 27 static v8::Handle<v8::Value> GetExternalFileEntry(const v8::Arguments& args) { |
| 19 // TODO(zelidrag): Make this magic work on other platforms when file browser | 28 // TODO(zelidrag): Make this magic work on other platforms when file browser |
| 20 // matures enough on ChromeOS. | 29 // matures enough on ChromeOS. |
| 21 #if defined(OS_CHROMEOS) | 30 #if defined(OS_CHROMEOS) |
| 22 CHECK(args.Length() == 1); | 31 CHECK(args.Length() == 1); |
| 23 CHECK(args[0]->IsObject()); | 32 CHECK(args[0]->IsObject()); |
| 24 v8::Local<v8::Object> file_def = args[0]->ToObject(); | 33 v8::Local<v8::Object> file_def = args[0]->ToObject(); |
| 25 std::string file_system_name( | 34 std::string file_system_name( |
| 26 *v8::String::Utf8Value(file_def->Get( | 35 *v8::String::Utf8Value(file_def->Get( |
| 27 v8::String::New("fileSystemName")))); | 36 v8::String::New("fileSystemName")))); |
| 28 std::string file_system_path( | 37 std::string file_system_path( |
| 29 *v8::String::Utf8Value(file_def->Get( | 38 *v8::String::Utf8Value(file_def->Get( |
| 30 v8::String::New("fileSystemRoot")))); | 39 v8::String::New("fileSystemRoot")))); |
| 31 std::string file_full_path( | 40 std::string file_full_path( |
| 32 *v8::String::Utf8Value(file_def->Get( | 41 *v8::String::Utf8Value(file_def->Get( |
| 33 v8::String::New("fileFullPath")))); | 42 v8::String::New("fileFullPath")))); |
| 34 bool is_directory = | 43 bool is_directory = |
| 35 file_def->Get(v8::String::New("fileIsDirectory"))->ToBoolean()->Value(); | 44 file_def->Get(v8::String::New("fileIsDirectory"))->ToBoolean()->Value(); |
| 36 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext(); | 45 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext(); |
| 37 return webframe->createFileEntry( | 46 return webframe->createFileEntry( |
| 38 WebKit::WebFileSystem::TypeExternal, | 47 WebKit::WebFileSystem::TypeExternal, |
| 39 WebKit::WebString::fromUTF8(file_system_name.c_str()), | 48 WebKit::WebString::fromUTF8(file_system_name.c_str()), |
| 40 WebKit::WebString::fromUTF8(file_system_path.c_str()), | 49 WebKit::WebString::fromUTF8(file_system_path.c_str()), |
| 41 WebKit::WebString::fromUTF8(file_full_path.c_str()), | 50 WebKit::WebString::fromUTF8(file_full_path.c_str()), |
| 42 is_directory); | 51 is_directory); |
| 43 #else | 52 #else |
| 44 return v8::Undefined(); | 53 return v8::Undefined(); |
| 45 #endif | 54 #endif |
| 46 } | 55 } |
| 47 | 56 |
| 48 } // namespace | 57 v8::Handle<v8::FunctionTemplate> |
| 49 | 58 FileBrowserHandlerCustomBindings::GetNativeFunction( |
| 50 namespace extensions { | 59 v8::Handle<v8::String> name) { |
| 51 | 60 if (name->Equals(v8::String::New("GetExternalFileEntry"))) |
| 52 FileBrowserHandlerCustomBindings::FileBrowserHandlerCustomBindings() | 61 return v8::FunctionTemplate::New(GetExternalFileEntry); |
| 53 : ChromeV8Extension(NULL) { | 62 else |
| 54 RouteStaticFunction("GetExternalFileEntry", &GetExternalFileEntry); | 63 return ChromeV8Extension::GetNativeFunction(name); |
| 55 } | 64 } |
| 56 | 65 |
| 57 | |
| 58 } // namespace extensions | 66 } // namespace extensions |
| OLD | NEW |