blob: 2c23aa59073a48b78a717728e3dd96d1eed2fcc7 (
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
|
// Copyright (c) 2011 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 "content/browser/in_process_webkit/indexed_db_database_callbacks.h"
#include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h"
#include "content/common/indexed_db_messages.h"
IndexedDBDatabaseCallbacks::IndexedDBDatabaseCallbacks(
IndexedDBDispatcherHost* dispatcher_host,
int database_id)
: dispatcher_host_(dispatcher_host),
database_id_(database_id) {
}
IndexedDBDatabaseCallbacks::~IndexedDBDatabaseCallbacks() {
}
void IndexedDBDatabaseCallbacks::onVersionChange(
const WebKit::WebString& requested_version) {
dispatcher_host_->Send(
new IndexedDBMsg_DatabaseCallbacksVersionChange(
database_id_, requested_version));
}
|