Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 13 matching lines...) Expand all Loading... | |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "modules/indexeddb/IDBVersionChangeEvent.h" | 27 #include "modules/indexeddb/IDBVersionChangeEvent.h" |
| 28 | 28 |
| 29 #include "bindings/v8/IDBBindingUtilities.h" | 29 #include "bindings/v8/IDBBindingUtilities.h" |
| 30 #include "core/events/ThreadLocalEventNames.h" | 30 #include "core/events/ThreadLocalEventNames.h" |
| 31 | 31 |
| 32 namespace WebCore { | 32 namespace WebCore { |
| 33 | 33 |
| 34 | |
|
tkent
2014/03/03 08:06:53
looks unnecessary change.
haraken
2014/03/03 08:29:10
Done.
| |
| 35 IDBVersionChangeEventInit::IDBVersionChangeEventInit() | 34 IDBVersionChangeEventInit::IDBVersionChangeEventInit() |
| 36 : oldVersion(0) | 35 : oldVersion(0) |
| 37 { | 36 { |
| 38 } | 37 } |
| 39 | 38 |
| 40 IDBVersionChangeEvent::IDBVersionChangeEvent() | 39 IDBVersionChangeEvent::IDBVersionChangeEvent() |
| 41 : m_dataLoss(blink::WebIDBDataLossNone) | 40 : m_dataLoss(blink::WebIDBDataLossNone) |
| 42 { | 41 { |
| 43 ScriptWrappable::init(this); | 42 ScriptWrappable::init(this); |
| 44 } | 43 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 81 { | 80 { |
| 82 return EventNames::IDBVersionChangeEvent; | 81 return EventNames::IDBVersionChangeEvent; |
| 83 } | 82 } |
| 84 | 83 |
| 85 void IDBVersionChangeEvent::trace(Visitor* visitor) | 84 void IDBVersionChangeEvent::trace(Visitor* visitor) |
| 86 { | 85 { |
| 87 Event::trace(visitor); | 86 Event::trace(visitor); |
| 88 } | 87 } |
| 89 | 88 |
| 90 } // namespace WebCore | 89 } // namespace WebCore |
| OLD | NEW |