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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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) 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 class MODULES_EXPORT IDBTransaction final 52 class MODULES_EXPORT IDBTransaction final
53 : public RefCountedGarbageCollectedEventTargetWithInlineData<IDBTransaction> 53 : public RefCountedGarbageCollectedEventTargetWithInlineData<IDBTransaction>
54 , public ActiveDOMObject { 54 , public ActiveDOMObject {
55 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBTransaction); 55 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBTransaction);
56 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(IDBTransaction); 56 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(IDBTransaction);
57 DEFINE_WRAPPERTYPEINFO(); 57 DEFINE_WRAPPERTYPEINFO();
58 public: 58 public:
59 static IDBTransaction* create(ScriptState*, int64_t, const HashSet<String>& objectStoreNames, WebIDBTransactionMode, IDBDatabase*); 59 static IDBTransaction* create(ScriptState*, int64_t, const HashSet<String>& objectStoreNames, WebIDBTransactionMode, IDBDatabase*);
60 static IDBTransaction* create(ScriptState*, int64_t, IDBDatabase*, IDBOpenDB Request*, const IDBDatabaseMetadata& previousMetadata); 60 static IDBTransaction* create(ScriptState*, int64_t, IDBDatabase*, IDBOpenDB Request*, const IDBDatabaseMetadata& previousMetadata);
61 virtual ~IDBTransaction(); 61 ~IDBTransaction() override;
62 DECLARE_VIRTUAL_TRACE(); 62 DECLARE_VIRTUAL_TRACE();
63 63
64 static WebIDBTransactionMode stringToMode(const String&); 64 static WebIDBTransactionMode stringToMode(const String&);
65 65
66 // When the connection is closed backend will be 0. 66 // When the connection is closed backend will be 0.
67 WebIDBDatabase* backendDB() const; 67 WebIDBDatabase* backendDB() const;
68 68
69 int64_t id() const { return m_id; } 69 int64_t id() const { return m_id; }
70 bool isActive() const { return m_state == Active; } 70 bool isActive() const { return m_state == Active; }
71 bool isFinished() const { return m_state == Finished; } 71 bool isFinished() const { return m_state == Finished; }
(...skipping 17 matching lines...) Expand all
89 void setError(DOMError*); 89 void setError(DOMError*);
90 90
91 DEFINE_ATTRIBUTE_EVENT_LISTENER(abort); 91 DEFINE_ATTRIBUTE_EVENT_LISTENER(abort);
92 DEFINE_ATTRIBUTE_EVENT_LISTENER(complete); 92 DEFINE_ATTRIBUTE_EVENT_LISTENER(complete);
93 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); 93 DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
94 94
95 void onAbort(DOMError*); 95 void onAbort(DOMError*);
96 void onComplete(); 96 void onComplete();
97 97
98 // EventTarget 98 // EventTarget
99 virtual const AtomicString& interfaceName() const override; 99 const AtomicString& interfaceName() const override;
100 virtual ExecutionContext* executionContext() const override; 100 ExecutionContext* executionContext() const override;
101 101
102 using EventTarget::dispatchEvent; 102 using EventTarget::dispatchEvent;
103 virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override; 103 bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
104 104
105 // ActiveDOMObject 105 // ActiveDOMObject
106 virtual bool hasPendingActivity() const override; 106 bool hasPendingActivity() const override;
107 virtual void stop() override; 107 void stop() override;
108 108
109 private: 109 private:
110 IDBTransaction(ScriptState*, int64_t, const HashSet<String>&, WebIDBTransact ionMode, IDBDatabase*, IDBOpenDBRequest*, const IDBDatabaseMetadata&); 110 IDBTransaction(ScriptState*, int64_t, const HashSet<String>&, WebIDBTransact ionMode, IDBDatabase*, IDBOpenDBRequest*, const IDBDatabaseMetadata&);
111 111
112 void enqueueEvent(PassRefPtrWillBeRawPtr<Event>); 112 void enqueueEvent(PassRefPtrWillBeRawPtr<Event>);
113 113
114 enum State { 114 enum State {
115 Inactive, // Created or started, but not in an event callback 115 Inactive, // Created or started, but not in an event callback
116 Active, // Created or started, in creation scope or an event callback 116 Active, // Created or started, in creation scope or an event callback
117 Finishing, // In the process of aborting or completing. 117 Finishing, // In the process of aborting or completing.
(...skipping 19 matching lines...) Expand all
137 IDBObjectStoreSet m_deletedObjectStores; 137 IDBObjectStoreSet m_deletedObjectStores;
138 138
139 typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjec tStoreMetadataMap; 139 typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjec tStoreMetadataMap;
140 IDBObjectStoreMetadataMap m_objectStoreCleanupMap; 140 IDBObjectStoreMetadataMap m_objectStoreCleanupMap;
141 IDBDatabaseMetadata m_previousMetadata; 141 IDBDatabaseMetadata m_previousMetadata;
142 }; 142 };
143 143
144 } // namespace blink 144 } // namespace blink
145 145
146 #endif // IDBTransaction_h 146 #endif // IDBTransaction_h
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBRequestTest.cpp ('k') | Source/modules/indexeddb/IDBTransactionTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698