Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: chrome/browser/in_process_webkit/indexed_db_callbacks.cc

Issue 2740003: Implement IDBDatabase::createObjectStore. Also refactor IndexedDBCallbacks. (Closed)
Patch Set: Make sure indexed_db_context.cc is in the gypi file. Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/in_process_webkit/indexed_db_callbacks.h ('k') | chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698