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

Side by Side Diff: Source/core/css/MediaQueryList.cpp

Issue 348893004: Rework MediaQueryMatcher to batch up listener notification (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: MediaQueryList constructor needs to call updateMatches to avoid "fake" transitions from "unknown st… Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details. 12 * Library General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
18 */ 18 */
19 19
20 #include "config.h" 20 #include "config.h"
21 #include "core/css/MediaQueryList.h" 21 #include "core/css/MediaQueryList.h"
22 22
23 #include "core/css/MediaList.h" 23 #include "core/css/MediaList.h"
24 #include "core/css/MediaQueryEvaluator.h" 24 #include "core/css/MediaQueryEvaluator.h"
25 #include "core/css/MediaQueryListListener.h" 25 #include "core/css/MediaQueryListListener.h"
26 #include "core/css/MediaQueryMatcher.h" 26 #include "core/css/MediaQueryMatcher.h"
27 27
28 namespace WebCore { 28 namespace WebCore {
29 29
30 PassRefPtrWillBeRawPtr<MediaQueryList> MediaQueryList::create(PassRefPtrWillBeRa wPtr<MediaQueryMatcher> vector, PassRefPtrWillBeRawPtr<MediaQuerySet> media, boo l matches) 30 PassRefPtrWillBeRawPtr<MediaQueryList> MediaQueryList::create(PassRefPtrWillBeRa wPtr<MediaQueryMatcher> matcher, PassRefPtrWillBeRawPtr<MediaQuerySet> media)
31 { 31 {
32 return adoptRefWillBeNoop(new MediaQueryList(vector, media, matches)); 32 return adoptRefWillBeNoop(new MediaQueryList(matcher, media));
33 } 33 }
34 34
35 MediaQueryList::MediaQueryList(PassRefPtrWillBeRawPtr<MediaQueryMatcher> vector, PassRefPtrWillBeRawPtr<MediaQuerySet> media, bool matches) 35 MediaQueryList::MediaQueryList(PassRefPtrWillBeRawPtr<MediaQueryMatcher> matcher , PassRefPtrWillBeRawPtr<MediaQuerySet> media)
36 : m_matcher(vector) 36 : m_matcher(matcher)
37 , m_media(media) 37 , m_media(media)
38 , m_evaluationRound(m_matcher->evaluationRound()) 38 , m_matchesDirty(true)
39 , m_changeRound(m_evaluationRound - 1) // m_evaluationRound and m_changeRoun d initial values must be different. 39 , m_matches(false)
40 , m_matches(matches)
41 { 40 {
41 m_matcher->addMediaQueryList(this);
42 updateMatches();
42 } 43 }
43 44
44 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(MediaQueryList) 45 MediaQueryList::~MediaQueryList()
46 {
47 // FIXME: Figure out how to deal with this in oilpan.
Mads Ager (chromium) 2014/06/26 06:06:22 Right, this will not work for the oilpan build sin
cbiesinger 2014/06/26 20:27:59 Done.
48 m_matcher->removeMediaQueryList(this);
49 }
45 50
46 String MediaQueryList::media() const 51 String MediaQueryList::media() const
47 { 52 {
48 return m_media->mediaText(); 53 return m_media->mediaText();
49 } 54 }
50 55
51 void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener) 56 void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener)
52 { 57 {
53 if (!listener) 58 if (!listener)
54 return; 59 return;
55 60
56 m_matcher->addListener(listener, this); 61 listener->setMediaQueryList(this);
62 m_listeners.add(listener);
57 } 63 }
58 64
59 void MediaQueryList::removeListener(PassRefPtrWillBeRawPtr<MediaQueryListListene r> listener) 65 void MediaQueryList::removeListener(PassRefPtrWillBeRawPtr<MediaQueryListListene r> listener)
60 { 66 {
61 if (!listener) 67 if (!listener)
62 return; 68 return;
63 69
64 m_matcher->removeListener(listener.get(), this); 70 RefPtrWillBeRawPtr<MediaQueryList> protect(this);
71 listener->clearMediaQueryList();
72
73 for (ListenerList::iterator i = m_listeners.begin(), end = m_listeners.end() ; i != end; ++i) {
74 // We can't just use m_listeners.remove() here, because we get a new wra pper for the
75 // listener callback every time. We have to use MediaQueryListListener:: operator==.
76 if (**i == *listener.get()) {
77 m_listeners.remove(i);
78 break;
79 }
80 }
65 } 81 }
66 82
67 bool MediaQueryList::evaluate(MediaQueryEvaluator* evaluator) 83 void MediaQueryList::documentDetached()
68 { 84 {
69 if (m_evaluationRound != m_matcher->evaluationRound() && evaluator) 85 m_listeners.clear();
70 setMatches(evaluator->eval(m_media.get()));
71 return m_changeRound == m_matcher->evaluationRound();
72 } 86 }
73 87
74 void MediaQueryList::setMatches(bool newValue) 88 void MediaQueryList::mediaFeaturesChanged(WillBeHeapVector<RefPtrWillBeMember<Me diaQueryListListener> >* toNotify)
75 { 89 {
76 m_evaluationRound = m_matcher->evaluationRound(); 90 m_matchesDirty = true;
91 if (updateMatches()) {
esprehn 2014/06/26 05:43:24 early return. if (!updateMatches()) return; for
cbiesinger 2014/06/26 20:27:59 Done.
92 for (ListenerList::const_iterator i = m_listeners.begin(), end = m_liste ners.end(); i != end; ++i) {
93 toNotify->append(*i);
94 }
95 }
96 }
77 97
78 if (newValue == m_matches) 98 bool MediaQueryList::updateMatches()
79 return; 99 {
80 100 m_matchesDirty = false;
81 m_matches = newValue; 101 if (m_matches != m_matcher->evaluate(m_media.get())) {
82 m_changeRound = m_evaluationRound; 102 m_matches = !m_matches;
103 return true;
104 }
105 return false;
83 } 106 }
84 107
85 bool MediaQueryList::matches() 108 bool MediaQueryList::matches()
86 { 109 {
87 if (m_evaluationRound != m_matcher->evaluationRound()) 110 updateMatches();
88 setMatches(m_matcher->evaluate(m_media.get()));
89 return m_matches; 111 return m_matches;
90 } 112 }
91 113
92 void MediaQueryList::trace(Visitor* visitor) 114 void MediaQueryList::trace(Visitor* visitor)
93 { 115 {
94 visitor->trace(m_matcher); 116 visitor->trace(m_matcher);
95 visitor->trace(m_media); 117 visitor->trace(m_media);
118 visitor->trace(m_listeners);
96 } 119 }
97 120
98 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698