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

Side by Side Diff: Source/modules/indexeddb/WebIDBCallbacksImpl.h

Issue 439713009: DevTools: Implement async stacks for IndexedDB. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698