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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8GCForContextDispose.cpp

Issue 1411843008: Make blink platform time consistent with the timer virtual time (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CachingCorrectnessTest Created 5 years, 1 month 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 } 63 }
64 64
65 V8GCForContextDispose& V8GCForContextDispose::instance() 65 V8GCForContextDispose& V8GCForContextDispose::instance()
66 { 66 {
67 DEFINE_STATIC_LOCAL(V8GCForContextDispose, staticInstance, ()); 67 DEFINE_STATIC_LOCAL(V8GCForContextDispose, staticInstance, ());
68 return staticInstance; 68 return staticInstance;
69 } 69 }
70 70
71 void V8GCForContextDispose::pseudoIdleTimerFired(Timer<V8GCForContextDispose>*) 71 void V8GCForContextDispose::pseudoIdleTimerFired(Timer<V8GCForContextDispose>*)
72 { 72 {
73 V8PerIsolateData::mainThreadIsolate()->IdleNotificationDeadline(Platform::cu rrent()->monotonicallyIncreasingTime()); 73 V8PerIsolateData::mainThreadIsolate()->IdleNotificationDeadline(Platform::cu rrent()->monotonicallyIncreasingTimeSeconds());
74 reset(); 74 reset();
75 } 75 }
76 76
77 void V8GCForContextDispose::reset() 77 void V8GCForContextDispose::reset()
78 { 78 {
79 m_didDisposeContextForMainFrame = false; 79 m_didDisposeContextForMainFrame = false;
80 m_lastContextDisposalTime = -1; 80 m_lastContextDisposalTime = -1;
81 } 81 }
82 82
83 } // namespace blink 83 } // namespace blink
OLDNEW
« no previous file with comments | « content/test/fake_renderer_scheduler.cc ('k') | third_party/WebKit/Source/core/fetch/CachingCorrectnessTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698