OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #ifndef CustomElementRegistry_h | 31 #ifndef CustomElementRegistry_h |
32 #define CustomElementRegistry_h | 32 #define CustomElementRegistry_h |
33 | 33 |
34 #if ENABLE(CUSTOM_ELEMENTS) | 34 #if ENABLE(CUSTOM_ELEMENTS) |
35 | 35 |
36 #include "ContextDestructionObserver.h" | 36 #include "ContextDestructionObserver.h" |
37 #include "ExceptionCode.h" | 37 #include "ExceptionCode.h" |
38 #include "QualifiedName.h" | 38 #include "QualifiedName.h" |
39 #include "ScriptValue.h" | 39 #include "ScriptValue.h" |
40 #include "Supplementable.h" | 40 #include "core/platform/Supplementable.h" |
41 #include <wtf/HashSet.h> | 41 #include <wtf/HashSet.h> |
42 #include <wtf/ListHashSet.h> | 42 #include <wtf/ListHashSet.h> |
43 #include <wtf/PassRefPtr.h> | 43 #include <wtf/PassRefPtr.h> |
44 #include <wtf/RefCounted.h> | 44 #include <wtf/RefCounted.h> |
45 #include <wtf/RefPtr.h> | 45 #include <wtf/RefPtr.h> |
| 46 #include <wtf/text/AtomicStringHash.h> |
46 #include <wtf/Vector.h> | 47 #include <wtf/Vector.h> |
47 #include <wtf/text/AtomicStringHash.h> | |
48 | 48 |
49 namespace WebCore { | 49 namespace WebCore { |
50 | 50 |
51 class CustomElementConstructor; | 51 class CustomElementConstructor; |
52 class Dictionary; | 52 class Dictionary; |
53 class Document; | 53 class Document; |
54 class Element; | 54 class Element; |
55 class ScriptExecutionContext; | 55 class ScriptExecutionContext; |
56 class QualifiedName; | 56 class QualifiedName; |
57 | 57 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 { | 119 { |
120 DEFINE_STATIC_LOCAL(InstanceSet, activeInstances, ()); | 120 DEFINE_STATIC_LOCAL(InstanceSet, activeInstances, ()); |
121 return activeInstances; | 121 return activeInstances; |
122 } | 122 } |
123 | 123 |
124 | 124 |
125 } // namespace WebCore | 125 } // namespace WebCore |
126 | 126 |
127 #endif // ENABLE(CUSTOM_ELEMENTS) | 127 #endif // ENABLE(CUSTOM_ELEMENTS) |
128 #endif | 128 #endif |
OLD | NEW |