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

Side by Side Diff: Source/platform/Timer.cpp

Issue 856493002: Oilpan: persist Timer<T>'s object while active. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: simplified and generalized Created 5 years, 11 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/platform/Timer.h ('k') | no next file » | 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) 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 } 395 }
396 396
397 void TimerBase::fireTimersInNestedEventLoop() 397 void TimerBase::fireTimersInNestedEventLoop()
398 { 398 {
399 // Redirect to ThreadTimers. 399 // Redirect to ThreadTimers.
400 PlatformThreadData::current().threadTimers().fireTimersInNestedEventLoop(); 400 PlatformThreadData::current().threadTimers().fireTimersInNestedEventLoop();
401 } 401 }
402 402
403 void TimerBase::didChangeAlignmentInterval() 403 void TimerBase::didChangeAlignmentInterval()
404 { 404 {
405 setNextFireTime(m_unalignedNextFireTime); 405 this->setNextFireTime(m_unalignedNextFireTime);
406 } 406 }
407 407
408 double TimerBase::nextUnalignedFireInterval() const 408 double TimerBase::nextUnalignedFireInterval() const
409 { 409 {
410 ASSERT(isActive()); 410 ASSERT(isActive());
411 return std::max(m_unalignedNextFireTime - monotonicallyIncreasingTime(), 0.0 ); 411 return std::max(m_unalignedNextFireTime - monotonicallyIncreasingTime(), 0.0 );
412 } 412 }
413 413
414 namespace {
415
416 class ActiveTimerInstanceTracker final : public GarbageCollectedFinalized<Active TimerInstanceTracker> {
417 public:
418 void add(const void* self, TimerInstanceTracker::TraceMethodTrampoline tramp oline)
419 {
420 m_activeTimerInstances.add(self, trampoline);
421 }
422
423 void remove(const void* self)
424 {
425 m_activeTimerInstances.remove(self);
426 }
427
428 void trace(Visitor* visitor)
429 {
430 for (const auto& active : m_activeTimerInstances)
431 active.value(visitor, const_cast<void*>(active.key));
432 }
433
434 private:
435 using ActiveTimerInstanceMap = HashMap<const void*, TimerInstanceTracker::Tr aceMethodTrampoline>;
436
437 ActiveTimerInstanceMap m_activeTimerInstances;
438 };
439
440 static ActiveTimerInstanceTracker& activeTimerInstanceTracker()
441 {
442 DEFINE_STATIC_LOCAL(Persistent<ActiveTimerInstanceTracker>, tracker, (new Ac tiveTimerInstanceTracker));
443 return *tracker;
444 }
445
446 }
447
448 void TimerInstanceTracker::add(const void* self, TraceMethodTrampoline trampolin e)
449 {
450 ActiveTimerInstanceTracker& tracker = activeTimerInstanceTracker();
451 tracker.add(self, trampoline);
452 }
453
454 void TimerInstanceTracker::remove(const void* self)
455 {
456 ActiveTimerInstanceTracker& tracker = activeTimerInstanceTracker();
457 tracker.remove(self);
458 }
459
414 } // namespace blink 460 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/Timer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698