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
|
// Copyright 2013 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 "content/worker/shared_worker_permission_client_proxy.h"
#include "content/child/thread_safe_sender.h"
#include "content/common/worker_messages.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "url/gurl.h"
namespace content {
SharedWorkerPermissionClientProxy::SharedWorkerPermissionClientProxy(
const GURL& origin_url,
int routing_id,
ThreadSafeSender* thread_safe_sender)
: origin_url_(origin_url),
routing_id_(routing_id),
thread_safe_sender_(thread_safe_sender) {
}
SharedWorkerPermissionClientProxy::~SharedWorkerPermissionClientProxy() {
}
bool SharedWorkerPermissionClientProxy::allowDatabase(
const WebKit::WebString& name,
const WebKit::WebString& display_name,
unsigned long estimated_size) {
bool result = false;
thread_safe_sender_->Send(new WorkerProcessHostMsg_AllowDatabase(
routing_id_, origin_url_, name, display_name,
estimated_size, &result));
return result;
}
bool SharedWorkerPermissionClientProxy::allowFileSystem() {
bool result = false;
thread_safe_sender_->Send(new WorkerProcessHostMsg_AllowFileSystem(
routing_id_, origin_url_, &result));
return result;
}
bool SharedWorkerPermissionClientProxy::allowIndexedDB(
const WebKit::WebString& name) {
bool result = false;
thread_safe_sender_->Send(new WorkerProcessHostMsg_AllowIndexedDB(
routing_id_, origin_url_, name, &result));
return result;
}
} // namespace content
|