| OLD | NEW |
| 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 "content/public/renderer/render_frame.h" | 8 #include "content/public/renderer/render_frame.h" |
| 9 #include "content/public/renderer/render_thread.h" | 9 #include "content/public/renderer/render_thread.h" |
| 10 #include "ipc/ipc_sync_message_filter.h" | 10 #include "ipc/ipc_sync_message_filter.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 return result; | 41 return result; |
| 42 } | 42 } |
| 43 | 43 |
| 44 bool WorkerContentSettingsClientProxy::allowIndexedDB( | 44 bool WorkerContentSettingsClientProxy::allowIndexedDB( |
| 45 const blink::WebString& name) { | 45 const blink::WebString& name) { |
| 46 if (is_unique_origin_) | 46 if (is_unique_origin_) |
| 47 return false; | 47 return false; |
| 48 | 48 |
| 49 bool result = false; | 49 bool result = false; |
| 50 sync_message_filter_->Send(new ChromeViewHostMsg_AllowIndexedDB( | 50 sync_message_filter_->Send(new ChromeViewHostMsg_AllowIndexedDB( |
| 51 routing_id_, document_origin_url_, top_frame_origin_url_, name, &result)); | 51 routing_id_, document_origin_url_, top_frame_origin_url_, name.utf16(), |
| 52 &result)); |
| 52 return result; | 53 return result; |
| 53 } | 54 } |
| OLD | NEW |