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

Side by Side Diff: Source/web/AssociatedURLLoader.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/platform/scroll/Scrollbar.cpp ('k') | Source/web/ExternalPopupMenu.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) 2010, 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2010, 2011, 2012 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 { 270 {
271 didFail(error); 271 didFail(error);
272 } 272 }
273 273
274 void AssociatedURLLoader::ClientAdapter::enableErrorNotifications() 274 void AssociatedURLLoader::ClientAdapter::enableErrorNotifications()
275 { 275 {
276 m_enableErrorNotifications = true; 276 m_enableErrorNotifications = true;
277 // If an error has already been received, start a timer to report it to the client 277 // If an error has already been received, start a timer to report it to the client
278 // after AssociatedURLLoader::loadAsynchronously has returned to the caller. 278 // after AssociatedURLLoader::loadAsynchronously has returned to the caller.
279 if (m_didFail) 279 if (m_didFail)
280 m_errorTimer.startOneShot(0); 280 m_errorTimer.startOneShot(0, FROM_HERE);
281 } 281 }
282 282
283 void AssociatedURLLoader::ClientAdapter::notifyError(Timer<ClientAdapter>* timer ) 283 void AssociatedURLLoader::ClientAdapter::notifyError(Timer<ClientAdapter>* timer )
284 { 284 {
285 ASSERT_UNUSED(timer, timer == &m_errorTimer); 285 ASSERT_UNUSED(timer, timer == &m_errorTimer);
286 286
287 m_client->didFail(m_loader, m_error); 287 m_client->didFail(m_loader, m_error);
288 } 288 }
289 289
290 AssociatedURLLoader::AssociatedURLLoader(PassRefPtr<WebFrameImpl> frameImpl, con st WebURLLoaderOptions& options) 290 AssociatedURLLoader::AssociatedURLLoader(PassRefPtr<WebFrameImpl> frameImpl, con st WebURLLoaderOptions& options)
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 m_loader->cancel(); 364 m_loader->cancel();
365 } 365 }
366 366
367 void AssociatedURLLoader::setDefersLoading(bool defersLoading) 367 void AssociatedURLLoader::setDefersLoading(bool defersLoading)
368 { 368 {
369 if (m_loader) 369 if (m_loader)
370 m_loader->setDefersLoading(defersLoading); 370 m_loader->setDefersLoading(defersLoading);
371 } 371 }
372 372
373 } // namespace blink 373 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/scroll/Scrollbar.cpp ('k') | Source/web/ExternalPopupMenu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698