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

Side by Side Diff: chrome/renderer/worker_content_settings_client_proxy.cc

Issue 2387613002: Merge Content Settings IPCs back to chrome/common/render_messages.h (Closed)
Patch Set: Cover param_traits in chrome/common/OWNERS, as requested by the presubmit script Created 4 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 unified diff | Download patch
« no previous file with comments | « chrome/renderer/plugins/chrome_plugin_placeholder.cc ('k') | components/content_settings/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/worker_content_settings_client_proxy.h" 5 #include "chrome/renderer/worker_content_settings_client_proxy.h"
6 6
7 #include "chrome/common/render_messages.h" 7 #include "chrome/common/render_messages.h"
8 #include "components/content_settings/content/common/content_settings_messages.h "
9 #include "content/public/renderer/render_frame.h" 8 #include "content/public/renderer/render_frame.h"
10 #include "content/public/renderer/render_thread.h" 9 #include "content/public/renderer/render_thread.h"
11 #include "ipc/ipc_sync_message_filter.h" 10 #include "ipc/ipc_sync_message_filter.h"
12 #include "third_party/WebKit/public/platform/URLConversion.h" 11 #include "third_party/WebKit/public/platform/URLConversion.h"
13 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" 12 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h"
14 #include "third_party/WebKit/public/web/WebDocument.h" 13 #include "third_party/WebKit/public/web/WebDocument.h"
15 #include "third_party/WebKit/public/web/WebFrame.h" 14 #include "third_party/WebKit/public/web/WebFrame.h"
16 15
17 WorkerContentSettingsClientProxy::WorkerContentSettingsClientProxy( 16 WorkerContentSettingsClientProxy::WorkerContentSettingsClientProxy(
18 content::RenderFrame* render_frame, 17 content::RenderFrame* render_frame,
(...skipping 25 matching lines...) Expand all
44 bool WorkerContentSettingsClientProxy::allowIndexedDB( 43 bool WorkerContentSettingsClientProxy::allowIndexedDB(
45 const blink::WebString& name) { 44 const blink::WebString& name) {
46 if (is_unique_origin_) 45 if (is_unique_origin_)
47 return false; 46 return false;
48 47
49 bool result = false; 48 bool result = false;
50 sync_message_filter_->Send(new ChromeViewHostMsg_AllowIndexedDB( 49 sync_message_filter_->Send(new ChromeViewHostMsg_AllowIndexedDB(
51 routing_id_, document_origin_url_, top_frame_origin_url_, name, &result)); 50 routing_id_, document_origin_url_, top_frame_origin_url_, name, &result));
52 return result; 51 return result;
53 } 52 }
OLDNEW
« no previous file with comments | « chrome/renderer/plugins/chrome_plugin_placeholder.cc ('k') | components/content_settings/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698