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

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

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 int64_t m_id; 119 int64_t m_id;
120 Member<IDBDatabase> m_database; 120 Member<IDBDatabase> m_database;
121 const Vector<String> m_objectStoreNames; 121 const Vector<String> m_objectStoreNames;
122 Member<IDBOpenDBRequest> m_openDBRequest; 122 Member<IDBOpenDBRequest> m_openDBRequest;
123 const WebIDBTransactionMode m_mode; 123 const WebIDBTransactionMode m_mode;
124 State m_state; 124 State m_state;
125 bool m_hasPendingActivity; 125 bool m_hasPendingActivity;
126 bool m_contextStopped; 126 bool m_contextStopped;
127 Member<DOMError> m_error; 127 Member<DOMError> m_error;
128 128
129 HeapListHashSet<Member<IDBRequest> > m_requestList; 129 HeapListHashSet<Member<IDBRequest>> m_requestList;
130 130
131 typedef HeapHashMap<String, Member<IDBObjectStore> > IDBObjectStoreMap; 131 typedef HeapHashMap<String, Member<IDBObjectStore>> IDBObjectStoreMap;
132 IDBObjectStoreMap m_objectStoreMap; 132 IDBObjectStoreMap m_objectStoreMap;
133 133
134 typedef HeapHashSet<Member<IDBObjectStore> > IDBObjectStoreSet; 134 typedef HeapHashSet<Member<IDBObjectStore>> IDBObjectStoreSet;
135 IDBObjectStoreSet m_deletedObjectStores; 135 IDBObjectStoreSet m_deletedObjectStores;
136 136
137 typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjec tStoreMetadataMap; 137 typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjec tStoreMetadataMap;
138 IDBObjectStoreMetadataMap m_objectStoreCleanupMap; 138 IDBObjectStoreMetadataMap m_objectStoreCleanupMap;
139 IDBDatabaseMetadata m_previousMetadata; 139 IDBDatabaseMetadata m_previousMetadata;
140 }; 140 };
141 141
142 } // namespace blink 142 } // namespace blink
143 143
144 #endif // IDBTransaction_h 144 #endif // IDBTransaction_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698