| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 namespace blink { | 50 namespace blink { |
| 51 | 51 |
| 52 class DOMException; | 52 class DOMException; |
| 53 class ExceptionState; | 53 class ExceptionState; |
| 54 class IDBCursor; | 54 class IDBCursor; |
| 55 struct IDBDatabaseMetadata; | 55 struct IDBDatabaseMetadata; |
| 56 class IDBValue; | 56 class IDBValue; |
| 57 | 57 |
| 58 class MODULES_EXPORT IDBRequest | 58 class MODULES_EXPORT IDBRequest |
| 59 : public RefCountedGarbageCollectedEventTargetWithInlineData<IDBRequest> | 59 : public EventTargetWithInlineData |
| 60 , public ActiveScriptWrappable | 60 , public ActiveScriptWrappable |
| 61 , public ActiveDOMObject { | 61 , public ActiveDOMObject { |
| 62 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBRequest); | 62 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBRequest); |
| 63 DEFINE_WRAPPERTYPEINFO(); | 63 DEFINE_WRAPPERTYPEINFO(); |
| 64 USING_GARBAGE_COLLECTED_MIXIN(IDBRequest); | 64 USING_GARBAGE_COLLECTED_MIXIN(IDBRequest); |
| 65 public: | 65 public: |
| 66 static IDBRequest* create(ScriptState*, IDBAny* source, IDBTransaction*); | 66 static IDBRequest* create(ScriptState*, IDBAny* source, IDBTransaction*); |
| 67 ~IDBRequest() override; | 67 ~IDBRequest() override; |
| 68 DECLARE_VIRTUAL_TRACE(); | 68 DECLARE_VIRTUAL_TRACE(); |
| 69 | 69 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 RefPtr<IDBValue> m_cursorValue; | 169 RefPtr<IDBValue> m_cursorValue; |
| 170 | 170 |
| 171 bool m_didFireUpgradeNeededEvent = false; | 171 bool m_didFireUpgradeNeededEvent = false; |
| 172 bool m_preventPropagation = false; | 172 bool m_preventPropagation = false; |
| 173 bool m_resultDirty = true; | 173 bool m_resultDirty = true; |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 } // namespace blink | 176 } // namespace blink |
| 177 | 177 |
| 178 #endif // IDBRequest_h | 178 #endif // IDBRequest_h |
| OLD | NEW |