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

Side by Side Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistry.h

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef V0CustomElementRegistry_h 31 #ifndef V0CustomElementRegistry_h
32 #define V0CustomElementRegistry_h 32 #define V0CustomElementRegistry_h
33 33
34 #include "core/dom/custom/V0CustomElement.h" 34 #include "core/dom/custom/V0CustomElement.h"
35 #include "core/dom/custom/V0CustomElementDefinition.h" 35 #include "core/dom/custom/V0CustomElementDefinition.h"
36 #include "core/dom/custom/V0CustomElementDescriptor.h" 36 #include "core/dom/custom/V0CustomElementDescriptor.h"
37 #include "core/dom/custom/V0CustomElementDescriptorHash.h" 37 #include "core/dom/custom/V0CustomElementDescriptorHash.h"
38 #include "wtf/HashMap.h" 38 #include "platform/wtf/HashMap.h"
39 #include "wtf/HashSet.h" 39 #include "platform/wtf/HashSet.h"
40 #include "wtf/text/AtomicString.h" 40 #include "platform/wtf/text/AtomicString.h"
41 #include "wtf/text/AtomicStringHash.h" 41 #include "platform/wtf/text/AtomicStringHash.h"
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class CustomElementRegistry; 45 class CustomElementRegistry;
46 class ExceptionState; 46 class ExceptionState;
47 class V0CustomElementConstructorBuilder; 47 class V0CustomElementConstructorBuilder;
48 48
49 class V0CustomElementRegistry final { 49 class V0CustomElementRegistry final {
50 WTF_MAKE_NONCOPYABLE(V0CustomElementRegistry); 50 WTF_MAKE_NONCOPYABLE(V0CustomElementRegistry);
51 DISALLOW_NEW(); 51 DISALLOW_NEW();
(...skipping 26 matching lines...) Expand all
78 DefinitionMap; 78 DefinitionMap;
79 DefinitionMap definitions_; 79 DefinitionMap definitions_;
80 HashSet<AtomicString> registered_type_names_; 80 HashSet<AtomicString> registered_type_names_;
81 Member<const CustomElementRegistry> v1_; 81 Member<const CustomElementRegistry> v1_;
82 bool document_was_detached_; 82 bool document_was_detached_;
83 }; 83 };
84 84
85 } // namespace blink 85 } // namespace blink
86 86
87 #endif // V0CustomElementRegistry_h 87 #endif // V0CustomElementRegistry_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698