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/Platform/chromium/public/WebFileSystem.h" | 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystem.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
15 | 15 |
16 namespace { | 16 namespace extensions { |
17 | 17 |
18 v8::Handle<v8::Value> GetExternalFileEntry(const v8::Arguments& args) { | 18 FileBrowserHandlerCustomBindings::FileBrowserHandlerCustomBindings( |
| 19 Dispatcher* dispatcher, v8::Handle<v8::Context> context) |
| 20 : ChromeV8Extension(dispatcher, context) { |
| 21 RouteFunction( |
| 22 "GetExternalFileEntry", |
| 23 base::Bind(&FileBrowserHandlerCustomBindings::GetExternalFileEntry, |
| 24 base::Unretained(this))); |
| 25 } |
| 26 |
| 27 v8::Handle<v8::Value> FileBrowserHandlerCustomBindings::GetExternalFileEntry( |
| 28 const v8::Arguments& args) { |
19 // TODO(zelidrag): Make this magic work on other platforms when file browser | 29 // TODO(zelidrag): Make this magic work on other platforms when file browser |
20 // matures enough on ChromeOS. | 30 // matures enough on ChromeOS. |
21 #if defined(OS_CHROMEOS) | 31 #if defined(OS_CHROMEOS) |
22 CHECK(args.Length() == 1); | 32 CHECK(args.Length() == 1); |
23 CHECK(args[0]->IsObject()); | 33 CHECK(args[0]->IsObject()); |
24 v8::Local<v8::Object> file_def = args[0]->ToObject(); | 34 v8::Local<v8::Object> file_def = args[0]->ToObject(); |
25 std::string file_system_name( | 35 std::string file_system_name( |
26 *v8::String::Utf8Value(file_def->Get( | 36 *v8::String::Utf8Value(file_def->Get( |
27 v8::String::New("fileSystemName")))); | 37 v8::String::New("fileSystemName")))); |
28 std::string file_system_path( | 38 std::string file_system_path( |
29 *v8::String::Utf8Value(file_def->Get( | 39 *v8::String::Utf8Value(file_def->Get( |
30 v8::String::New("fileSystemRoot")))); | 40 v8::String::New("fileSystemRoot")))); |
31 std::string file_full_path( | 41 std::string file_full_path( |
32 *v8::String::Utf8Value(file_def->Get( | 42 *v8::String::Utf8Value(file_def->Get( |
33 v8::String::New("fileFullPath")))); | 43 v8::String::New("fileFullPath")))); |
34 bool is_directory = | 44 bool is_directory = |
35 file_def->Get(v8::String::New("fileIsDirectory"))->ToBoolean()->Value(); | 45 file_def->Get(v8::String::New("fileIsDirectory"))->ToBoolean()->Value(); |
36 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext(); | 46 WebKit::WebFrame* webframe = |
| 47 WebKit::WebFrame::frameForContext(v8_context()); |
37 return webframe->createFileEntry( | 48 return webframe->createFileEntry( |
38 WebKit::WebFileSystem::TypeExternal, | 49 WebKit::WebFileSystem::TypeExternal, |
39 WebKit::WebString::fromUTF8(file_system_name.c_str()), | 50 WebKit::WebString::fromUTF8(file_system_name.c_str()), |
40 WebKit::WebString::fromUTF8(file_system_path.c_str()), | 51 WebKit::WebString::fromUTF8(file_system_path.c_str()), |
41 WebKit::WebString::fromUTF8(file_full_path.c_str()), | 52 WebKit::WebString::fromUTF8(file_full_path.c_str()), |
42 is_directory); | 53 is_directory); |
43 #else | 54 #else |
44 return v8::Undefined(); | 55 return v8::Undefined(); |
45 #endif | 56 #endif |
46 } | 57 } |
47 | 58 |
48 } // namespace | |
49 | |
50 namespace extensions { | |
51 | |
52 FileBrowserHandlerCustomBindings::FileBrowserHandlerCustomBindings() | |
53 : ChromeV8Extension(NULL) { | |
54 RouteStaticFunction("GetExternalFileEntry", &GetExternalFileEntry); | |
55 } | |
56 | |
57 | |
58 } // namespace extensions | 59 } // namespace extensions |
OLD | NEW |