| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 // IDBCallbacks | 83 // IDBCallbacks |
| 84 virtual void onError(PassRefPtr<IDBDatabaseError>); | 84 virtual void onError(PassRefPtr<IDBDatabaseError>); |
| 85 virtual void onSuccess(const Vector<String>&); | 85 virtual void onSuccess(const Vector<String>&); |
| 86 virtual void onSuccess(PassRefPtr<IDBCursorBackendInterface>, PassRefPtr<IDB
Key>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>); | 86 virtual void onSuccess(PassRefPtr<IDBCursorBackendInterface>, PassRefPtr<IDB
Key>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer>); |
| 87 virtual void onSuccess(PassRefPtr<IDBKey>); | 87 virtual void onSuccess(PassRefPtr<IDBKey>); |
| 88 virtual void onSuccess(PassRefPtr<SharedBuffer>); | 88 virtual void onSuccess(PassRefPtr<SharedBuffer>); |
| 89 virtual void onSuccess(PassRefPtr<SharedBuffer>, PassRefPtr<IDBKey>, const I
DBKeyPath&); | 89 virtual void onSuccess(PassRefPtr<SharedBuffer>, PassRefPtr<IDBKey>, const I
DBKeyPath&); |
| 90 virtual void onSuccess(int64_t); | 90 virtual void onSuccess(int64_t); |
| 91 virtual void onSuccess(); | 91 virtual void onSuccess(); |
| 92 virtual void onSuccess(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, Pa
ssRefPtr<SharedBuffer>); | 92 virtual void onSuccess(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, Pa
ssRefPtr<SharedBuffer>); |
| 93 virtual void onSuccessWithPrefetch(const Vector<RefPtr<IDBKey> >&, const Vec
tor<RefPtr<IDBKey> >&, const Vector<RefPtr<SharedBuffer> >&) { ASSERT_NOT_REACHE
D(); } // Not implemented. Callback should not reach the renderer side. | |
| 94 | 93 |
| 95 // ActiveDOMObject | 94 // ActiveDOMObject |
| 96 virtual bool hasPendingActivity() const OVERRIDE; | 95 virtual bool hasPendingActivity() const OVERRIDE; |
| 97 virtual void stop() OVERRIDE; | 96 virtual void stop() OVERRIDE; |
| 98 | 97 |
| 99 // EventTarget | 98 // EventTarget |
| 100 virtual const AtomicString& interfaceName() const; | 99 virtual const AtomicString& interfaceName() const; |
| 101 virtual ScriptExecutionContext* scriptExecutionContext() const; | 100 virtual ScriptExecutionContext* scriptExecutionContext() const; |
| 102 virtual void uncaughtExceptionInEventHandler(); | 101 virtual void uncaughtExceptionInEventHandler(); |
| 103 | 102 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 bool m_didFireUpgradeNeededEvent; | 155 bool m_didFireUpgradeNeededEvent; |
| 157 bool m_preventPropagation; | 156 bool m_preventPropagation; |
| 158 | 157 |
| 159 EventTargetData m_eventTargetData; | 158 EventTargetData m_eventTargetData; |
| 160 DOMRequestState m_requestState; | 159 DOMRequestState m_requestState; |
| 161 }; | 160 }; |
| 162 | 161 |
| 163 } // namespace WebCore | 162 } // namespace WebCore |
| 164 | 163 |
| 165 #endif // IDBRequest_h | 164 #endif // IDBRequest_h |
| OLD | NEW |