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

Side by Side Diff: third_party/WebKit/Source/core/dom/custom/CustomElementReactionTestHelpers.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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/dom/custom/CustomElementReaction.h" 5 #include "core/dom/custom/CustomElementReaction.h"
6 6
7 #include <initializer_list>
8 #include <memory>
9 #include <vector>
7 #include "core/dom/custom/CustomElementReactionQueue.h" 10 #include "core/dom/custom/CustomElementReactionQueue.h"
8 #include "core/dom/custom/CustomElementReactionStack.h" 11 #include "core/dom/custom/CustomElementReactionStack.h"
9 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
13 #include "platform/wtf/Functional.h"
14 #include "platform/wtf/Noncopyable.h"
10 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
11 #include "wtf/Functional.h"
12 #include "wtf/Noncopyable.h"
13 #include <initializer_list>
14 #include <memory>
15 #include <vector>
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class Element; 19 class Element;
20 20
21 class Command : public GarbageCollectedFinalized<Command> { 21 class Command : public GarbageCollectedFinalized<Command> {
22 WTF_MAKE_NONCOPYABLE(Command); 22 WTF_MAKE_NONCOPYABLE(Command);
23 23
24 public: 24 public:
25 Command() = default; 25 Command() = default;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 } 141 }
142 142
143 CustomElementReactionStack& Stack() { return *stack_; } 143 CustomElementReactionStack& Stack() { return *stack_; }
144 144
145 private: 145 private:
146 Member<CustomElementReactionStack> stack_; 146 Member<CustomElementReactionStack> stack_;
147 Member<CustomElementReactionStack> old_stack_; 147 Member<CustomElementReactionStack> old_stack_;
148 }; 148 };
149 149
150 } // namespace blink 150 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698