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

Side by Side Diff: chrome/renderer/extensions/file_browser_handler_custom_bindings.cc

Issue 9386001: Implement a module system for the extension bindings JS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 extensions { 16 namespace {
17 17
18 FileBrowserHandlerCustomBindings::FileBrowserHandlerCustomBindings( 18 v8::Handle<v8::Value> GetExternalFileEntry(const v8::Arguments& args) {
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) {
28 // TODO(zelidrag): Make this magic work on other platforms when file browser 19 // TODO(zelidrag): Make this magic work on other platforms when file browser
29 // matures enough on ChromeOS. 20 // matures enough on ChromeOS.
30 #if defined(OS_CHROMEOS) 21 #if defined(OS_CHROMEOS)
31 CHECK(args.Length() == 1); 22 CHECK(args.Length() == 1);
32 CHECK(args[0]->IsObject()); 23 CHECK(args[0]->IsObject());
33 v8::Local<v8::Object> file_def = args[0]->ToObject(); 24 v8::Local<v8::Object> file_def = args[0]->ToObject();
34 std::string file_system_name( 25 std::string file_system_name(
35 *v8::String::Utf8Value(file_def->Get( 26 *v8::String::Utf8Value(file_def->Get(
36 v8::String::New("fileSystemName")))); 27 v8::String::New("fileSystemName"))));
37 std::string file_system_path( 28 std::string file_system_path(
38 *v8::String::Utf8Value(file_def->Get( 29 *v8::String::Utf8Value(file_def->Get(
39 v8::String::New("fileSystemRoot")))); 30 v8::String::New("fileSystemRoot"))));
40 std::string file_full_path( 31 std::string file_full_path(
41 *v8::String::Utf8Value(file_def->Get( 32 *v8::String::Utf8Value(file_def->Get(
42 v8::String::New("fileFullPath")))); 33 v8::String::New("fileFullPath"))));
43 bool is_directory = 34 bool is_directory =
44 file_def->Get(v8::String::New("fileIsDirectory"))->ToBoolean()->Value(); 35 file_def->Get(v8::String::New("fileIsDirectory"))->ToBoolean()->Value();
45 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext(); 36 WebKit::WebFrame* webframe = WebKit::WebFrame::frameForCurrentContext();
46 return webframe->createFileEntry( 37 return webframe->createFileEntry(
47 WebKit::WebFileSystem::TypeExternal, 38 WebKit::WebFileSystem::TypeExternal,
48 WebKit::WebString::fromUTF8(file_system_name.c_str()), 39 WebKit::WebString::fromUTF8(file_system_name.c_str()),
49 WebKit::WebString::fromUTF8(file_system_path.c_str()), 40 WebKit::WebString::fromUTF8(file_system_path.c_str()),
50 WebKit::WebString::fromUTF8(file_full_path.c_str()), 41 WebKit::WebString::fromUTF8(file_full_path.c_str()),
51 is_directory); 42 is_directory);
52 #else 43 #else
53 return v8::Undefined(); 44 return v8::Undefined();
54 #endif 45 #endif
55 } 46 }
56 47
57 v8::Handle<v8::FunctionTemplate> 48 } // namespace
58 FileBrowserHandlerCustomBindings::GetNativeFunction( 49
59 v8::Handle<v8::String> name) { 50 namespace extensions {
60 if (name->Equals(v8::String::New("GetExternalFileEntry"))) 51
61 return v8::FunctionTemplate::New(GetExternalFileEntry); 52 FileBrowserHandlerCustomBindings::FileBrowserHandlerCustomBindings()
62 else 53 : ChromeV8Extension(NULL) {
63 return ChromeV8Extension::GetNativeFunction(name); 54 RouteStaticFunction("GetExternalFileEntry", &GetExternalFileEntry);
64 } 55 }
65 56
57
66 } // namespace extensions 58 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698