blob: ab6de7347f2218de19a83ca472927cf4aee35cca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/extensions/sync_file_system_custom_bindings.h"
#include <string>
#include "chrome/common/extensions/extension_constants.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
#include "v8/include/v8.h"
#include "webkit/fileapi/file_system_util.h"
namespace extensions {
SyncFileSystemCustomBindings::SyncFileSystemCustomBindings(
Dispatcher* dispatcher, v8::Handle<v8::Context> v8_context)
: ChromeV8Extension(dispatcher, v8_context) {
RouteFunction(
"GetSyncFileSystemObject",
base::Bind(&SyncFileSystemCustomBindings::GetSyncFileSystemObject,
base::Unretained(this)));
}
v8::Handle<v8::Value> SyncFileSystemCustomBindings::GetSyncFileSystemObject(
const v8::Arguments& args) {
if (args.Length() != 2) {
NOTREACHED();
return v8::Undefined();
}
if (!args[0]->IsString()) {
NOTREACHED();
return v8::Undefined();
}
if (!args[1]->IsString()) {
NOTREACHED();
return v8::Undefined();
}
std::string name(*v8::String::Utf8Value(args[0]));
if (name.empty()) {
NOTREACHED();
return v8::Undefined();
}
std::string root_url(*v8::String::Utf8Value(args[1]));
if (root_url.empty()) {
NOTREACHED();
return v8::Undefined();
}
WebKit::WebFrame* webframe =
WebKit::WebFrame::frameForContext(v8_context());
return webframe->createFileSystem(
WebKit::WebFileSystemTypeExternal,
WebKit::WebString::fromUTF8(name),
WebKit::WebString::fromUTF8(root_url));
}
} // namespace extensions
|