| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2010, 2011, 2012 Apple Inc. All | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2010, 2011, 2012 Apple Inc. All |
| 5 * rights reserved. | 5 * rights reserved. |
| 6 * Copyright (C) 2014 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2014 Samsung Electronics. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "core/html/HTMLFormControlsCollection.h" | 25 #include "core/html/HTMLFormControlsCollection.h" |
| 26 | 26 |
| 27 #include "bindings/core/v8/RadioNodeListOrElement.h" | 27 #include "bindings/core/v8/RadioNodeListOrElement.h" |
| 28 #include "core/HTMLNames.h" | 28 #include "core/HTMLNames.h" |
| 29 #include "core/frame/UseCounter.h" | 29 #include "core/frame/UseCounter.h" |
| 30 #include "core/html/HTMLFormElement.h" | 30 #include "core/html/HTMLFormElement.h" |
| 31 #include "core/html/HTMLImageElement.h" | 31 #include "core/html/HTMLImageElement.h" |
| 32 #include "wtf/HashSet.h" | 32 #include "platform/wtf/HashSet.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 using namespace HTMLNames; | 36 using namespace HTMLNames; |
| 37 | 37 |
| 38 // Since the collections are to be "live", we have to do the | 38 // Since the collections are to be "live", we have to do the |
| 39 // calculation every time if anything has changed. | 39 // calculation every time if anything has changed. |
| 40 | 40 |
| 41 HTMLFormControlsCollection::HTMLFormControlsCollection( | 41 HTMLFormControlsCollection::HTMLFormControlsCollection( |
| 42 ContainerNode& owner_node) | 42 ContainerNode& owner_node) |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 } | 220 } |
| 221 } | 221 } |
| 222 } | 222 } |
| 223 | 223 |
| 224 DEFINE_TRACE(HTMLFormControlsCollection) { | 224 DEFINE_TRACE(HTMLFormControlsCollection) { |
| 225 visitor->Trace(cached_element_); | 225 visitor->Trace(cached_element_); |
| 226 HTMLCollection::Trace(visitor); | 226 HTMLCollection::Trace(visitor); |
| 227 } | 227 } |
| 228 | 228 |
| 229 } // namespace blink | 229 } // namespace blink |
| OLD | NEW |