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

Side by Side Diff: Source/core/loader/ImageLoader.cpp

Issue 189833009: Trace where timers were scheduled in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 years, 9 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
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/loader/LinkLoader.cpp » ('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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. All rights reserv ed. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. All rights reserv ed.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 if (wasProtected == m_elementIsProtected) 331 if (wasProtected == m_elementIsProtected)
332 return; 332 return;
333 333
334 if (m_elementIsProtected) { 334 if (m_elementIsProtected) {
335 if (m_derefElementTimer.isActive()) 335 if (m_derefElementTimer.isActive())
336 m_derefElementTimer.stop(); 336 m_derefElementTimer.stop();
337 else 337 else
338 m_element->ref(); 338 m_element->ref();
339 } else { 339 } else {
340 ASSERT(!m_derefElementTimer.isActive()); 340 ASSERT(!m_derefElementTimer.isActive());
341 m_derefElementTimer.startOneShot(0); 341 m_derefElementTimer.startOneShot(0, FROM_HERE);
342 } 342 }
343 } 343 }
344 344
345 void ImageLoader::timerFired(Timer<ImageLoader>*) 345 void ImageLoader::timerFired(Timer<ImageLoader>*)
346 { 346 {
347 m_element->deref(); 347 m_element->deref();
348 } 348 }
349 349
350 void ImageLoader::dispatchPendingEvent(ImageEventSender* eventSender) 350 void ImageLoader::dispatchPendingEvent(ImageEventSender* eventSender)
351 { 351 {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 handle->notifyImageSourceChanged(); 464 handle->notifyImageSourceChanged();
465 } 465 }
466 } 466 }
467 467
468 inline void ImageLoader::clearFailedLoadURL() 468 inline void ImageLoader::clearFailedLoadURL()
469 { 469 {
470 m_failedLoadURL = AtomicString(); 470 m_failedLoadURL = AtomicString();
471 } 471 }
472 472
473 } 473 }
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/core/loader/LinkLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698