| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/renderer/renderer_webidbfactory_impl.h" | 5 #include "content/renderer/renderer_webidbfactory_impl.h" |
| 6 | 6 |
| 7 #include "content/renderer/render_thread.h" | 7 #include "content/renderer/render_thread.h" |
| 8 #include "content/renderer/indexed_db_dispatcher.h" | 8 #include "content/renderer/indexed_db_dispatcher.h" |
| 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMStringList.h" | 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMStringList.h" |
| 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h" |
| 11 | 11 |
| 12 using WebKit::WebDOMStringList; | 12 using WebKit::WebDOMStringList; |
| 13 using WebKit::WebFrame; | 13 using WebKit::WebFrame; |
| 14 using WebKit::WebIDBCallbacks; | 14 using WebKit::WebIDBCallbacks; |
| 15 using WebKit::WebIDBDatabase; | 15 using WebKit::WebIDBDatabase; |
| 16 using WebKit::WebSecurityOrigin; | 16 using WebKit::WebSecurityOrigin; |
| 17 using WebKit::WebString; | 17 using WebKit::WebString; |
| 18 | 18 |
| 19 RendererWebIDBFactoryImpl::RendererWebIDBFactoryImpl() { | 19 RendererWebIDBFactoryImpl::RendererWebIDBFactoryImpl() { |
| 20 } | 20 } |
| 21 | 21 |
| 22 RendererWebIDBFactoryImpl::~RendererWebIDBFactoryImpl() { | 22 RendererWebIDBFactoryImpl::~RendererWebIDBFactoryImpl() { |
| 23 } | 23 } |
| 24 | 24 |
| 25 void RendererWebIDBFactoryImpl::getDatabaseNames( |
| 26 WebIDBCallbacks* callbacks, |
| 27 const WebSecurityOrigin& origin, |
| 28 WebFrame* web_frame, |
| 29 const WebString& data_dir_unused, |
| 30 unsigned long long maximum_size_unused, |
| 31 WebKit::WebIDBFactory::BackingStoreType) { |
| 32 IndexedDBDispatcher* dispatcher = |
| 33 RenderThread::current()->indexed_db_dispatcher(); |
| 34 dispatcher->RequestIDBFactoryGetDatabaseNames( |
| 35 callbacks, origin.databaseIdentifier(), web_frame); |
| 36 } |
| 37 |
| 25 void RendererWebIDBFactoryImpl::open( | 38 void RendererWebIDBFactoryImpl::open( |
| 26 const WebString& name, | 39 const WebString& name, |
| 27 WebIDBCallbacks* callbacks, | 40 WebIDBCallbacks* callbacks, |
| 28 const WebSecurityOrigin& origin, | 41 const WebSecurityOrigin& origin, |
| 29 WebFrame* web_frame, | 42 WebFrame* web_frame, |
| 30 const WebString& data_dir, | 43 const WebString& data_dir, |
| 31 unsigned long long maximum_size_unused, | 44 unsigned long long maximum_size_unused, |
| 32 WebKit::WebIDBFactory::BackingStoreType) { | 45 WebKit::WebIDBFactory::BackingStoreType) { |
| 33 // Don't send the data_dir. We know what we want on the Browser side of | 46 // Don't send the data_dir. We know what we want on the Browser side of |
| 34 // things. | 47 // things. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 55 WebFrame* web_frame, | 68 WebFrame* web_frame, |
| 56 const WebString& data_dir, | 69 const WebString& data_dir, |
| 57 WebKit::WebIDBFactory::BackingStoreType) { | 70 WebKit::WebIDBFactory::BackingStoreType) { |
| 58 // Don't send the data_dir. We know what we want on the Browser side of | 71 // Don't send the data_dir. We know what we want on the Browser side of |
| 59 // things. | 72 // things. |
| 60 IndexedDBDispatcher* dispatcher = | 73 IndexedDBDispatcher* dispatcher = |
| 61 RenderThread::current()->indexed_db_dispatcher(); | 74 RenderThread::current()->indexed_db_dispatcher(); |
| 62 dispatcher->RequestIDBFactoryDeleteDatabase( | 75 dispatcher->RequestIDBFactoryDeleteDatabase( |
| 63 name, callbacks, origin.databaseIdentifier(), web_frame); | 76 name, callbacks, origin.databaseIdentifier(), web_frame); |
| 64 } | 77 } |
| OLD | NEW |