OLD | NEW |
| (Empty) |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/in_process_webkit/indexed_db_callbacks.h" | |
6 | |
7 #include "base/logging.h" | |
8 #include "chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h" | |
9 | |
10 using WebKit::WebIDBDatabase; | |
11 using WebKit::WebSerializedScriptValue; | |
12 | |
13 IndexedDBCallbacks::IndexedDBCallbacks(IndexedDBDispatcherHost* parent, | |
14 int32 response_id) | |
15 : parent_(parent), | |
16 response_id_(response_id) { | |
17 } | |
18 | |
19 IndexedDBCallbacks::~IndexedDBCallbacks() { | |
20 } | |
21 | |
22 void IndexedDBCallbacks::onSuccess(WebIDBDatabase* idb_database) { | |
23 NOTREACHED(); | |
24 } | |
25 | |
26 void IndexedDBCallbacks::onSuccess(const WebSerializedScriptValue& value) { | |
27 NOTREACHED(); | |
28 } | |
29 | |
OLD | NEW |