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

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

Issue 247423002: [oilpan]: Change all modules files to include platform/heap/... instead of heap/... (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 14 matching lines...) Expand all
25 25
26 #ifndef IDBDatabase_h 26 #ifndef IDBDatabase_h
27 #define IDBDatabase_h 27 #define IDBDatabase_h
28 28
29 #include "bindings/v8/Dictionary.h" 29 #include "bindings/v8/Dictionary.h"
30 #include "bindings/v8/ScriptWrappable.h" 30 #include "bindings/v8/ScriptWrappable.h"
31 #include "core/dom/ActiveDOMObject.h" 31 #include "core/dom/ActiveDOMObject.h"
32 #include "core/dom/DOMStringList.h" 32 #include "core/dom/DOMStringList.h"
33 #include "core/events/Event.h" 33 #include "core/events/Event.h"
34 #include "core/events/EventTarget.h" 34 #include "core/events/EventTarget.h"
35 #include "heap/Handle.h"
36 #include "modules/indexeddb/IDBDatabaseCallbacks.h" 35 #include "modules/indexeddb/IDBDatabaseCallbacks.h"
37 #include "modules/indexeddb/IDBMetadata.h" 36 #include "modules/indexeddb/IDBMetadata.h"
38 #include "modules/indexeddb/IDBObjectStore.h" 37 #include "modules/indexeddb/IDBObjectStore.h"
39 #include "modules/indexeddb/IDBTransaction.h" 38 #include "modules/indexeddb/IDBTransaction.h"
40 #include "modules/indexeddb/IndexedDB.h" 39 #include "modules/indexeddb/IndexedDB.h"
40 #include "platform/heap/Handle.h"
41 #include "public/platform/WebIDBDatabase.h" 41 #include "public/platform/WebIDBDatabase.h"
42 #include "wtf/OwnPtr.h" 42 #include "wtf/OwnPtr.h"
43 #include "wtf/PassOwnPtr.h" 43 #include "wtf/PassOwnPtr.h"
44 #include "wtf/PassRefPtr.h" 44 #include "wtf/PassRefPtr.h"
45 #include "wtf/RefCounted.h" 45 #include "wtf/RefCounted.h"
46 #include "wtf/RefPtr.h" 46 #include "wtf/RefPtr.h"
47 47
48 namespace WebCore { 48 namespace WebCore {
49 49
50 class DOMError; 50 class DOMError;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 // Keep track of the versionchange events waiting to be fired on this 145 // Keep track of the versionchange events waiting to be fired on this
146 // database so that we can cancel them if the database closes. 146 // database so that we can cancel them if the database closes.
147 WillBePersistentHeapVector<RefPtrWillBeMember<Event> > m_enqueuedEvents; 147 WillBePersistentHeapVector<RefPtrWillBeMember<Event> > m_enqueuedEvents;
148 148
149 RefPtr<IDBDatabaseCallbacks> m_databaseCallbacks; 149 RefPtr<IDBDatabaseCallbacks> m_databaseCallbacks;
150 }; 150 };
151 151
152 } // namespace WebCore 152 } // namespace WebCore
153 153
154 #endif // IDBDatabase_h 154 #endif // IDBDatabase_h
OLDNEW
« no previous file with comments | « Source/modules/geolocation/testing/GeolocationClientMock.h ('k') | Source/modules/indexeddb/IDBDatabaseCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698