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

Unified Diff: chrome/renderer/worker_permission_client_proxy.cc

Issue 46583005: Send Allow{Database,FileSystem,IndexedDB} sync IPCs directly from worker thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed comments Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/worker_permission_client_proxy.h ('k') | content/content_worker.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/worker_permission_client_proxy.cc
diff --git a/chrome/renderer/worker_permission_client_proxy.cc b/chrome/renderer/worker_permission_client_proxy.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f7a0a79d6d1a9c99460e1578efad2417e27b2d17
--- /dev/null
+++ b/chrome/renderer/worker_permission_client_proxy.cc
@@ -0,0 +1,63 @@
+// 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 "chrome/common/render_messages.h"
+#include "chrome/renderer/worker_permission_client_proxy.h"
+#include "content/public/renderer/render_thread.h"
+#include "content/public/renderer/render_view.h"
+#include "ipc/ipc_sync_message_filter.h"
+#include "third_party/WebKit/public/web/WebDocument.h"
+#include "third_party/WebKit/public/web/WebFrame.h"
+#include "third_party/WebKit/public/web/WebSecurityOrigin.h"
+
+WorkerPermissionClientProxy::WorkerPermissionClientProxy(
+ content::RenderView* render_view,
+ WebKit::WebFrame* frame)
+ : routing_id_(render_view->GetRoutingID()),
+ is_unique_origin_(false) {
+ if (frame->document().securityOrigin().isUnique() ||
+ frame->top()->document().securityOrigin().isUnique())
+ is_unique_origin_ = true;
+ sync_message_filter_ = content::RenderThread::Get()->GetSyncMessageFilter();
+ document_origin_url_ = GURL(frame->document().securityOrigin().toString());
+ top_frame_origin_url_ = GURL(
+ frame->top()->document().securityOrigin().toString());
+}
+
+WorkerPermissionClientProxy::~WorkerPermissionClientProxy() {}
+
+bool WorkerPermissionClientProxy::allowDatabase(
+ const WebKit::WebString& name,
+ const WebKit::WebString& display_name,
+ unsigned long estimated_size) {
+ if (is_unique_origin_)
+ return false;
+
+ bool result = false;
+ sync_message_filter_->Send(new ChromeViewHostMsg_AllowDatabase(
+ routing_id_, document_origin_url_, top_frame_origin_url_,
+ name, display_name, &result));
+ return result;
+}
+
+bool WorkerPermissionClientProxy::allowFileSystem() {
+ if (is_unique_origin_)
+ return false;
+
+ bool result = false;
+ sync_message_filter_->Send(new ChromeViewHostMsg_AllowFileSystem(
+ routing_id_, document_origin_url_, top_frame_origin_url_, &result));
+ return result;
+}
+
+bool WorkerPermissionClientProxy::allowIndexedDB(
+ const WebKit::WebString& name) {
+ if (is_unique_origin_)
+ return false;
+
+ bool result = false;
+ sync_message_filter_->Send(new ChromeViewHostMsg_AllowIndexedDB(
+ routing_id_, document_origin_url_, top_frame_origin_url_, name, &result));
+ return result;
+}
« no previous file with comments | « chrome/renderer/worker_permission_client_proxy.h ('k') | content/content_worker.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698