| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * 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 * | 10 * |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 virtual void onSuccess(long long) OVERRIDE; | 66 virtual void onSuccess(long long) OVERRIDE; |
| 67 virtual void onSuccess() OVERRIDE; | 67 virtual void onSuccess() OVERRIDE; |
| 68 virtual void onSuccess(const blink::WebIDBKey&, const blink::WebIDBKey& prim
aryKey, const blink::WebData&, const blink::WebVector<blink::WebBlobInfo>&) OVER
RIDE; | 68 virtual void onSuccess(const blink::WebIDBKey&, const blink::WebIDBKey& prim
aryKey, const blink::WebData&, const blink::WebVector<blink::WebBlobInfo>&) OVER
RIDE; |
| 69 virtual void onBlocked(long long oldVersion) OVERRIDE; | 69 virtual void onBlocked(long long oldVersion) OVERRIDE; |
| 70 virtual void onUpgradeNeeded(long long oldVersion, blink::WebIDBDatabase*, c
onst blink::WebIDBMetadata&, unsigned short dataLoss, blink::WebString dataLossM
essage) OVERRIDE; | 70 virtual void onUpgradeNeeded(long long oldVersion, blink::WebIDBDatabase*, c
onst blink::WebIDBMetadata&, unsigned short dataLoss, blink::WebString dataLossM
essage) OVERRIDE; |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 explicit WebIDBCallbacksImpl(IDBRequest*); | 73 explicit WebIDBCallbacksImpl(IDBRequest*); |
| 74 | 74 |
| 75 Persistent<IDBRequest> m_request; | 75 Persistent<IDBRequest> m_request; |
| 76 int m_asyncOperationId; |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 } // namespace blink | 79 } // namespace blink |
| 79 | 80 |
| 80 #endif // WebIDBCallbacksImpl_h | 81 #endif // WebIDBCallbacksImpl_h |
| OLD | NEW |