This source file includes following definitions.
- thread_safe_sender_
- allowDatabase
- allowFileSystem
- allowIndexedDB
#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,
bool is_unique_origin,
int routing_id,
ThreadSafeSender* thread_safe_sender)
: origin_url_(origin_url),
is_unique_origin_(is_unique_origin),
routing_id_(routing_id),
thread_safe_sender_(thread_safe_sender) {
}
SharedWorkerPermissionClientProxy::~SharedWorkerPermissionClientProxy() {
}
bool SharedWorkerPermissionClientProxy::allowDatabase(
const blink::WebString& name,
const blink::WebString& display_name,
unsigned long estimated_size) {
if (is_unique_origin_)
return false;
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() {
if (is_unique_origin_)
return false;
bool result = false;
thread_safe_sender_->Send(new WorkerProcessHostMsg_AllowFileSystem(
routing_id_, origin_url_, &result));
return result;
}
bool SharedWorkerPermissionClientProxy::allowIndexedDB(
const blink::WebString& name) {
if (is_unique_origin_)
return false;
bool result = false;
thread_safe_sender_->Send(new WorkerProcessHostMsg_AllowIndexedDB(
routing_id_, origin_url_, name, &result));
return result;
}
}