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

Side by Side Diff: Source/modules/indexeddb/IDBVersionChangeEvent.cpp

Issue 185393006: Revert "Add [WillBeGarbageCollected] to Event.idl" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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) 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
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
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
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBVersionChangeEvent.h ('k') | Source/modules/mediastream/MediaStreamEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698