| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CALLBACKS_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ |
| 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h" | 10 #include "content/browser/indexed_db/indexed_db_dispatcher_host.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
| 12 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h" | 12 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h" |
| 13 #include "third_party/WebKit/public/platform/WebIDBDatabase.h" | 13 #include "third_party/WebKit/public/platform/WebIDBDatabase.h" |
| 14 #include "third_party/WebKit/public/platform/WebIDBDatabaseError.h" | 14 #include "third_party/WebKit/public/platform/WebIDBDatabaseError.h" |
| 15 #include "third_party/WebKit/public/platform/WebString.h" | 15 #include "third_party/WebKit/public/platform/WebString.h" |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class WebIDBCursorImpl; | 18 class WebIDBCursorImpl; |
| 19 class WebIDBDatabaseImpl; | 19 class WebIDBDatabaseImpl; |
| 20 struct IndexedDBDatabaseMetadata; | 20 struct IndexedDBDatabaseMetadata; |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 virtual void onSuccess(long long value); | 200 virtual void onSuccess(long long value); |
| 201 virtual void onSuccess(); | 201 virtual void onSuccess(); |
| 202 virtual void onSuccess(const IndexedDBKey& value); | 202 virtual void onSuccess(const IndexedDBKey& value); |
| 203 | 203 |
| 204 private: | 204 private: |
| 205 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBCallbacks); | 205 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBCallbacks); |
| 206 }; | 206 }; |
| 207 | 207 |
| 208 } // namespace content | 208 } // namespace content |
| 209 | 209 |
| 210 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_ | 210 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_CALLBACKS_H_ |
| OLD | NEW |