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

Side by Side Diff: Source/core/dom/CSSSelectorWatch.h

Issue 1304043002: Make classes and structures in core/dom fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/dom/AttributeCollection.h ('k') | Source/core/dom/DOMArrayPiece.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 27 matching lines...) Expand all
38 #include "wtf/HashCountedSet.h" 38 #include "wtf/HashCountedSet.h"
39 #include "wtf/HashSet.h" 39 #include "wtf/HashSet.h"
40 #include "wtf/RefPtr.h" 40 #include "wtf/RefPtr.h"
41 #include "wtf/Vector.h" 41 #include "wtf/Vector.h"
42 #include "wtf/text/WTFString.h" 42 #include "wtf/text/WTFString.h"
43 43
44 namespace blink { 44 namespace blink {
45 45
46 class CORE_EXPORT CSSSelectorWatch final : public NoBaseWillBeGarbageCollectedFi nalized<CSSSelectorWatch>, public WillBeHeapSupplement<Document> { 46 class CORE_EXPORT CSSSelectorWatch final : public NoBaseWillBeGarbageCollectedFi nalized<CSSSelectorWatch>, public WillBeHeapSupplement<Document> {
47 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(CSSSelectorWatch); 47 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(CSSSelectorWatch);
48 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(CSSSelectorWatch);
48 public: 49 public:
49 virtual ~CSSSelectorWatch() { } 50 virtual ~CSSSelectorWatch() { }
50 51
51 static CSSSelectorWatch& from(Document&); 52 static CSSSelectorWatch& from(Document&);
52 static CSSSelectorWatch* fromIfExists(Document&); 53 static CSSSelectorWatch* fromIfExists(Document&);
53 54
54 void watchCSSSelectors(const Vector<String>& selectors); 55 void watchCSSSelectors(const Vector<String>& selectors);
55 const WillBeHeapVector<RefPtrWillBeMember<StyleRule>>& watchedCallbackSelect ors() const { return m_watchedCallbackSelectors; } 56 const WillBeHeapVector<RefPtrWillBeMember<StyleRule>>& watchedCallbackSelect ors() const { return m_watchedCallbackSelectors; }
56 57
57 void updateSelectorMatches(const Vector<String>& removedSelectors, const Vec tor<String>& addedSelectors); 58 void updateSelectorMatches(const Vector<String>& removedSelectors, const Vec tor<String>& addedSelectors);
(...skipping 20 matching lines...) Expand all
78 Timer<CSSSelectorWatch> m_callbackSelectorChangeTimer; 79 Timer<CSSSelectorWatch> m_callbackSelectorChangeTimer;
79 80
80 // When an element is reparented, the new location's style is evaluated afte r the expriation of the relayout timer. 81 // When an element is reparented, the new location's style is evaluated afte r the expriation of the relayout timer.
81 // We don't want to send redundant callbacks to the embedder, so this counte r lets us wait another time around the event loop. 82 // We don't want to send redundant callbacks to the embedder, so this counte r lets us wait another time around the event loop.
82 int m_timerExpirations; 83 int m_timerExpirations;
83 }; 84 };
84 85
85 } // namespace blink 86 } // namespace blink
86 87
87 #endif // CSSSelectorWatch_h 88 #endif // CSSSelectorWatch_h
OLDNEW
« no previous file with comments | « Source/core/dom/AttributeCollection.h ('k') | Source/core/dom/DOMArrayPiece.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698