blob: dddb2d2382aa5a6904975b32715061b27c570ac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// Copyright (c) 2010 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/renderer/renderer_webidbtransaction_impl.h"
#include "chrome/common/render_messages.h"
#include "chrome/renderer/indexed_db_dispatcher.h"
#include "chrome/renderer/render_thread.h"
#include "chrome/renderer/renderer_webidbobjectstore_impl.h"
#include "third_party/WebKit/WebKit/chromium/public/WebIDBObjectStore.h"
#include "third_party/WebKit/WebKit/chromium/public/WebIDBTransactionCallbacks.h"
#include "third_party/WebKit/WebKit/chromium/public/WebString.h"
using WebKit::WebIDBObjectStore;
using WebKit::WebIDBTransactionCallbacks;
using WebKit::WebString;
RendererWebIDBTransactionImpl::RendererWebIDBTransactionImpl(
int32 idb_transaction_id)
: idb_transaction_id_(idb_transaction_id) {
}
RendererWebIDBTransactionImpl::~RendererWebIDBTransactionImpl() {
RenderThread::current()->Send(new ViewHostMsg_IDBTransactionDestroyed(
idb_transaction_id_));
}
int RendererWebIDBTransactionImpl::mode() const
{
// TODO: implement
DCHECK(false);
return 0;
}
WebIDBObjectStore* RendererWebIDBTransactionImpl::objectStore(
const WebString& name)
{
int object_store_id;
RenderThread::current()->Send(
new ViewHostMsg_IDBTransactionObjectStore(
idb_transaction_id_, name, &object_store_id));
return new RendererWebIDBObjectStoreImpl(object_store_id);
}
void RendererWebIDBTransactionImpl::abort()
{
RenderThread::current()->Send(new ViewHostMsg_IDBTransactionAbort(
idb_transaction_id_));
}
int RendererWebIDBTransactionImpl::id() const
{
return idb_transaction_id_;
}
void RendererWebIDBTransactionImpl::setCallbacks(
WebIDBTransactionCallbacks* callbacks)
{
IndexedDBDispatcher* dispatcher =
RenderThread::current()->indexed_db_dispatcher();
dispatcher->RequestIDBTransactionSetCallbacks(callbacks);
}
|