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

Side by Side Diff: third_party/WebKit/Source/core/dom/IntersectionObserverController.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 #ifndef IntersectionObserverController_h 5 #ifndef IntersectionObserverController_h
6 #define IntersectionObserverController_h 6 #define IntersectionObserverController_h
7 7
8 #include "core/dom/IntersectionObserver.h" 8 #include "core/dom/IntersectionObserver.h"
9 #include "core/dom/SuspendableObject.h" 9 #include "core/dom/SuspendableObject.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
11 #include "wtf/HashSet.h" 11 #include "platform/wtf/HashSet.h"
12 #include "wtf/WeakPtr.h" 12 #include "platform/wtf/WeakPtr.h"
13 13
14 // Design doc for IntersectionObserver implementation: 14 // Design doc for IntersectionObserver implementation:
15 // https://docs.google.com/a/google.com/document/d/1hLK0eyT5_BzyNS4OkjsnoqqFQD YCbKfyBinj94OnLiQ 15 // https://docs.google.com/a/google.com/document/d/1hLK0eyT5_BzyNS4OkjsnoqqFQD YCbKfyBinj94OnLiQ
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class Document; 19 class Document;
20 20
21 class IntersectionObserverController 21 class IntersectionObserverController
22 : public GarbageCollectedFinalized<IntersectionObserverController>, 22 : public GarbageCollectedFinalized<IntersectionObserverController>,
(...skipping 25 matching lines...) Expand all
48 // callback. 48 // callback.
49 HeapHashSet<Member<IntersectionObserver>> pending_intersection_observers_; 49 HeapHashSet<Member<IntersectionObserver>> pending_intersection_observers_;
50 WTF::WeakPtrFactory<IntersectionObserverController> weak_ptr_factory_; 50 WTF::WeakPtrFactory<IntersectionObserverController> weak_ptr_factory_;
51 51
52 bool callback_fired_while_suspended_; 52 bool callback_fired_while_suspended_;
53 }; 53 };
54 54
55 } // namespace blink 55 } // namespace blink
56 56
57 #endif // IntersectionObserverController_h 57 #endif // IntersectionObserverController_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/IntersectionObserver.h ('k') | third_party/WebKit/Source/core/dom/LayoutTreeBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698