| 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 29 matching lines...) Expand all Loading... |
| 40 #include "modules/indexeddb/IDBOpenDBRequest.h" | 40 #include "modules/indexeddb/IDBOpenDBRequest.h" |
| 41 #include "modules/indexeddb/IDBTracing.h" | 41 #include "modules/indexeddb/IDBTracing.h" |
| 42 | 42 |
| 43 using blink::WebIDBDatabase; | 43 using blink::WebIDBDatabase; |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 IDBTransaction* IDBTransaction::create(ScriptState* scriptState, int64_t id, con
st Vector<String>& objectStoreNames, WebIDBTransactionMode mode, IDBDatabase* db
) | 47 IDBTransaction* IDBTransaction::create(ScriptState* scriptState, int64_t id, con
st Vector<String>& objectStoreNames, WebIDBTransactionMode mode, IDBDatabase* db
) |
| 48 { | 48 { |
| 49 IDBOpenDBRequest* openDBRequest = 0; | 49 IDBOpenDBRequest* openDBRequest = 0; |
| 50 IDBTransaction* transaction = adoptRefCountedGarbageCollectedWillBeNoop(new
IDBTransaction(scriptState, id, objectStoreNames, mode, db, openDBRequest, IDBDa
tabaseMetadata())); | 50 IDBTransaction* transaction = new IDBTransaction(scriptState, id, objectStor
eNames, mode, db, openDBRequest, IDBDatabaseMetadata()); |
| 51 transaction->suspendIfNeeded(); | 51 transaction->suspendIfNeeded(); |
| 52 return transaction; | 52 return transaction; |
| 53 } | 53 } |
| 54 | 54 |
| 55 IDBTransaction* IDBTransaction::create(ScriptState* scriptState, int64_t id, IDB
Database* db, IDBOpenDBRequest* openDBRequest, const IDBDatabaseMetadata& previo
usMetadata) | 55 IDBTransaction* IDBTransaction::create(ScriptState* scriptState, int64_t id, IDB
Database* db, IDBOpenDBRequest* openDBRequest, const IDBDatabaseMetadata& previo
usMetadata) |
| 56 { | 56 { |
| 57 IDBTransaction* transaction = adoptRefCountedGarbageCollectedWillBeNoop(new
IDBTransaction(scriptState, id, Vector<String>(), WebIDBTransactionModeVersionCh
ange, db, openDBRequest, previousMetadata)); | 57 IDBTransaction* transaction = new IDBTransaction(scriptState, id, Vector<Str
ing>(), WebIDBTransactionModeVersionChange, db, openDBRequest, previousMetadata)
; |
| 58 transaction->suspendIfNeeded(); | 58 transaction->suspendIfNeeded(); |
| 59 return transaction; | 59 return transaction; |
| 60 } | 60 } |
| 61 | 61 |
| 62 IDBTransaction::IDBTransaction(ScriptState* scriptState, int64_t id, const Vecto
r<String>& objectStoreNames, WebIDBTransactionMode mode, IDBDatabase* db, IDBOpe
nDBRequest* openDBRequest, const IDBDatabaseMetadata& previousMetadata) | 62 IDBTransaction::IDBTransaction(ScriptState* scriptState, int64_t id, const Vecto
r<String>& objectStoreNames, WebIDBTransactionMode mode, IDBDatabase* db, IDBOpe
nDBRequest* openDBRequest, const IDBDatabaseMetadata& previousMetadata) |
| 63 : ActiveDOMObject(scriptState->executionContext()) | 63 : ActiveDOMObject(scriptState->executionContext()) |
| 64 , m_id(id) | 64 , m_id(id) |
| 65 , m_database(db) | 65 , m_database(db) |
| 66 , m_objectStoreNames(objectStoreNames) | 66 , m_objectStoreNames(objectStoreNames) |
| 67 , m_openDBRequest(openDBRequest) | 67 , m_openDBRequest(openDBRequest) |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 event->setTarget(this); | 372 event->setTarget(this); |
| 373 eventQueue->enqueueEvent(event); | 373 eventQueue->enqueueEvent(event); |
| 374 } | 374 } |
| 375 | 375 |
| 376 WebIDBDatabase* IDBTransaction::backendDB() const | 376 WebIDBDatabase* IDBTransaction::backendDB() const |
| 377 { | 377 { |
| 378 return m_database->backend(); | 378 return m_database->backend(); |
| 379 } | 379 } |
| 380 | 380 |
| 381 } // namespace blink | 381 } // namespace blink |
| OLD | NEW |