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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/in_process_webkit/indexed_db_callbacks.cc
diff --git a/chrome/browser/in_process_webkit/indexed_db_callbacks.cc b/chrome/browser/in_process_webkit/indexed_db_callbacks.cc
deleted file mode 100644
index 82a48aa72d76ded3e9c7b5b9608ea7935ca7a576..0000000000000000000000000000000000000000
--- a/chrome/browser/in_process_webkit/indexed_db_callbacks.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// 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/browser/in_process_webkit/indexed_db_callbacks.h"
-
-#include "base/logging.h"
-#include "chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h"
-
-using WebKit::WebIDBDatabase;
-using WebKit::WebSerializedScriptValue;
-
-IndexedDBCallbacks::IndexedDBCallbacks(IndexedDBDispatcherHost* parent,
- int32 response_id)
- : parent_(parent),
- response_id_(response_id) {
-}
-
-IndexedDBCallbacks::~IndexedDBCallbacks() {
-}
-
-void IndexedDBCallbacks::onSuccess(WebIDBDatabase* idb_database) {
- NOTREACHED();
-}
-
-void IndexedDBCallbacks::onSuccess(const WebSerializedScriptValue& value) {
- NOTREACHED();
-}
-
« 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