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

Unified Diff: content/browser/in_process_webkit/indexed_db_transaction_callbacks.h

Issue 11114022: IndexedDB: Plumbing to allow cause of transaction abort to be passed to script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/in_process_webkit/indexed_db_transaction_callbacks.h
diff --git a/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h b/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h
index 321bd1c05bd38d863c85fa92e13a7a8695f65cea..ac34dca60b163531828c78f93d36fdee2924a708 100644
--- a/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h
+++ b/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h
@@ -6,6 +6,7 @@
#define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_TRANSACTION_CALLBACKS_H_
#include "base/memory/ref_counted.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabaseError.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCallbacks.h"
class IndexedDBDispatcherHost;
@@ -19,7 +20,9 @@ class IndexedDBTransactionCallbacks
virtual ~IndexedDBTransactionCallbacks();
+ // TODO(jsbell): Remove once WK99097 has landed.
virtual void onAbort();
+ virtual void onAbort(const WebKit::WebIDBDatabaseError& error);
virtual void onComplete();
private:
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698