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 214383008: Rework MediaQueryMatcher to batch up listener notification (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | 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 } 42 }
43 43
44 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(MediaQueryList) 44 MediaQueryList::~MediaQueryList()
45 {
46 // FIXME: Figure out how to deal with this in oilpan.
47 m_matcher->removeMediaQueryList(this);
48 }
45 49
46 String MediaQueryList::media() const 50 String MediaQueryList::media() const
47 { 51 {
48 return m_media->mediaText(); 52 return m_media->mediaText();
49 } 53 }
50 54
51 void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener) 55 void MediaQueryList::addListener(PassRefPtrWillBeRawPtr<MediaQueryListListener> listener)
52 { 56 {
53 if (!listener) 57 if (!listener)
54 return; 58 return;
55 59 m_listeners.add(listener);
56 m_matcher->addListener(listener, this); 60 listener->setMediaQueryList(this);
57 } 61 }
58 62
59 void MediaQueryList::removeListener(PassRefPtrWillBeRawPtr<MediaQueryListListene r> listener) 63 void MediaQueryList::removeListener(PassRefPtrWillBeRawPtr<MediaQueryListListene r> listener)
60 { 64 {
61 if (!listener) 65 if (!listener)
62 return; 66 return;
63 67 RefPtrWillBeRawPtr<MediaQueryList> protect(this);
64 m_matcher->removeListener(listener.get(), this); 68 m_listeners.remove(listener);
69 listener->clearMediaQueryList();
65 } 70 }
66 71
67 bool MediaQueryList::evaluate(MediaQueryEvaluator* evaluator) 72 void MediaQueryList::documentDetached()
68 { 73 {
69 if (m_evaluationRound != m_matcher->evaluationRound() && evaluator) 74 m_listeners.clear();
70 setMatches(evaluator->eval(m_media.get()));
71 return m_changeRound == m_matcher->evaluationRound();
72 } 75 }
73 76
74 void MediaQueryList::setMatches(bool newValue) 77 void MediaQueryList::mediaChanged(WillBeHeapVector<RefPtrWillBeMember<MediaQuery ListListener> > toNotify)
75 { 78 {
76 m_evaluationRound = m_matcher->evaluationRound(); 79 m_matchesDirty = true;
80 if (updateMatches())
81 copyToVector(m_listeners, toNotify);
82 }
77 83
78 if (newValue == m_matches) 84 bool MediaQueryList::updateMatches()
79 return; 85 {
80 86 m_matchesDirty = false;
81 m_matches = newValue; 87 if (m_matches != m_matcher->evaluate(m_media.get())) {
82 m_changeRound = m_evaluationRound; 88 m_matches = !m_matches;
89 return true;
90 }
91 return false;
83 } 92 }
84 93
85 bool MediaQueryList::matches() 94 bool MediaQueryList::matches()
86 { 95 {
87 if (m_evaluationRound != m_matcher->evaluationRound()) 96 updateMatches();
88 setMatches(m_matcher->evaluate(m_media.get()));
89 return m_matches; 97 return m_matches;
90 } 98 }
91 99
92 void MediaQueryList::trace(Visitor* visitor) 100 void MediaQueryList::trace(Visitor* visitor)
93 { 101 {
94 visitor->trace(m_matcher); 102 visitor->trace(m_matcher);
95 visitor->trace(m_media); 103 visitor->trace(m_media);
104 visitor->trace(m_listeners);
96 } 105 }
97 106
98 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698