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

Side by Side Diff: content/browser/in_process_webkit/indexed_db_transaction_callbacks.h

Issue 7550055: Remove idb transaction callbacks onTimeout stuff that was removed from the spec. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove message definition Created 9 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_transaction_callbacks.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_TRANSACTION_CALLBACKS_H_ 5 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_TRANSACTION_CALLBACKS_H_
6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_TRANSACTION_CALLBACKS_H_ 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_TRANSACTION_CALLBACKS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCall backs.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCall backs.h"
11 11
12 class IndexedDBDispatcherHost; 12 class IndexedDBDispatcherHost;
13 13
14 class IndexedDBTransactionCallbacks 14 class IndexedDBTransactionCallbacks
15 : public WebKit::WebIDBTransactionCallbacks { 15 : public WebKit::WebIDBTransactionCallbacks {
16 public: 16 public:
17 IndexedDBTransactionCallbacks(IndexedDBDispatcherHost* dispatcher_host, 17 IndexedDBTransactionCallbacks(IndexedDBDispatcherHost* dispatcher_host,
18 int transaction_id); 18 int transaction_id);
19 19
20 virtual ~IndexedDBTransactionCallbacks(); 20 virtual ~IndexedDBTransactionCallbacks();
21 21
22 virtual void onAbort(); 22 virtual void onAbort();
23 virtual void onComplete(); 23 virtual void onComplete();
24 virtual void onTimeout();
25 24
26 private: 25 private:
27 scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_; 26 scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_;
28 int transaction_id_; 27 int transaction_id_;
29 }; 28 };
30 29
31 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_TRANSACTION_CALLBACKS_H_ 30 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_TRANSACTION_CALLBACKS_H_
OLDNEW
« 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