| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |