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

Side by Side Diff: third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp

Issue 1854423002: ASSERT -> {DCHECK|DCHECK_XX}, ENABLE(ASSERT) -> DCHECK_IS_ON() in dom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mark svg/as-image/svg-nested.html crash on win Created 4 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 /* 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 } 62 }
63 63
64 CSSSelectorWatch* CSSSelectorWatch::fromIfExists(Document& document) 64 CSSSelectorWatch* CSSSelectorWatch::fromIfExists(Document& document)
65 { 65 {
66 return static_cast<CSSSelectorWatch*>(Supplement<Document>::from(document, k SupplementName)); 66 return static_cast<CSSSelectorWatch*>(Supplement<Document>::from(document, k SupplementName));
67 } 67 }
68 68
69 void CSSSelectorWatch::callbackSelectorChangeTimerFired(Timer<CSSSelectorWatch>* ) 69 void CSSSelectorWatch::callbackSelectorChangeTimerFired(Timer<CSSSelectorWatch>* )
70 { 70 {
71 // Should be ensured by updateSelectorMatches(): 71 // Should be ensured by updateSelectorMatches():
72 ASSERT(!m_addedSelectors.isEmpty() || !m_removedSelectors.isEmpty()); 72 DCHECK(!m_addedSelectors.isEmpty() || !m_removedSelectors.isEmpty());
73 73
74 if (m_timerExpirations < 1) { 74 if (m_timerExpirations < 1) {
75 m_timerExpirations++; 75 m_timerExpirations++;
76 m_callbackSelectorChangeTimer.startOneShot(0, BLINK_FROM_HERE); 76 m_callbackSelectorChangeTimer.startOneShot(0, BLINK_FROM_HERE);
77 return; 77 return;
78 } 78 }
79 if (document().frame()) { 79 if (document().frame()) {
80 Vector<String> addedSelectors; 80 Vector<String> addedSelectors;
81 Vector<String> removedSelectors; 81 Vector<String> removedSelectors;
82 copyToVector(m_addedSelectors, addedSelectors); 82 copyToVector(m_addedSelectors, addedSelectors);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 } 163 }
164 164
165 DEFINE_TRACE(CSSSelectorWatch) 165 DEFINE_TRACE(CSSSelectorWatch)
166 { 166 {
167 visitor->trace(m_watchedCallbackSelectors); 167 visitor->trace(m_watchedCallbackSelectors);
168 visitor->trace(m_document); 168 visitor->trace(m_document);
169 Supplement<Document>::trace(visitor); 169 Supplement<Document>::trace(visitor);
170 } 170 }
171 171
172 } // namespace blink 172 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Attr.cpp ('k') | third_party/WebKit/Source/core/dom/CharacterData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698