OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 23 matching lines...) Expand all Loading... |
34 #include "modules/indexeddb/IDBPendingTransactionMonitor.h" | 34 #include "modules/indexeddb/IDBPendingTransactionMonitor.h" |
35 #include "modules/indexeddb/IDBTracing.h" | 35 #include "modules/indexeddb/IDBTracing.h" |
36 #include "modules/indexeddb/IDBVersionChangeEvent.h" | 36 #include "modules/indexeddb/IDBVersionChangeEvent.h" |
37 | 37 |
38 using blink::WebIDBDatabase; | 38 using blink::WebIDBDatabase; |
39 | 39 |
40 namespace WebCore { | 40 namespace WebCore { |
41 | 41 |
42 IDBOpenDBRequest* IDBOpenDBRequest::create(ScriptState* scriptState, IDBDatabase
Callbacks* callbacks, int64_t transactionId, int64_t version) | 42 IDBOpenDBRequest* IDBOpenDBRequest::create(ScriptState* scriptState, IDBDatabase
Callbacks* callbacks, int64_t transactionId, int64_t version) |
43 { | 43 { |
44 IDBOpenDBRequest* request(adoptRefCountedGarbageCollected(new IDBOpenDBReque
st(scriptState, callbacks, transactionId, version))); | 44 IDBOpenDBRequest* request = adoptRefCountedGarbageCollectedWillBeNoop(new ID
BOpenDBRequest(scriptState, callbacks, transactionId, version)); |
45 request->suspendIfNeeded(); | 45 request->suspendIfNeeded(); |
46 return request; | 46 return request; |
47 } | 47 } |
48 | 48 |
49 IDBOpenDBRequest::IDBOpenDBRequest(ScriptState* scriptState, IDBDatabaseCallback
s* callbacks, int64_t transactionId, int64_t version) | 49 IDBOpenDBRequest::IDBOpenDBRequest(ScriptState* scriptState, IDBDatabaseCallback
s* callbacks, int64_t transactionId, int64_t version) |
50 : IDBRequest(scriptState, IDBAny::createNull(), 0) | 50 : IDBRequest(scriptState, IDBAny::createNull(), 0) |
51 , m_databaseCallbacks(callbacks) | 51 , m_databaseCallbacks(callbacks) |
52 , m_transactionId(transactionId) | 52 , m_transactionId(transactionId) |
53 , m_version(version) | 53 , m_version(version) |
54 { | 54 { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 dequeueEvent(event.get()); | 172 dequeueEvent(event.get()); |
173 setResult(0); | 173 setResult(0); |
174 onError(DOMError::create(AbortError, "The connection was closed.")); | 174 onError(DOMError::create(AbortError, "The connection was closed.")); |
175 return false; | 175 return false; |
176 } | 176 } |
177 | 177 |
178 return IDBRequest::dispatchEvent(event); | 178 return IDBRequest::dispatchEvent(event); |
179 } | 179 } |
180 | 180 |
181 } // namespace WebCore | 181 } // namespace WebCore |
OLD | NEW |