OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved. |
3 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 3 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 handle.setSynchronousInternetHandle(syncLoader.internetHandle()); | 424 handle.setSynchronousInternetHandle(syncLoader.internetHandle()); |
425 handle.start(context); | 425 handle.start(context); |
426 } | 426 } |
427 | 427 |
428 void ResourceHandle::setSynchronousInternetHandle(HINTERNET internetHandle) | 428 void ResourceHandle::setSynchronousInternetHandle(HINTERNET internetHandle) |
429 { | 429 { |
430 d->m_internetHandle = internetHandle; | 430 d->m_internetHandle = internetHandle; |
431 d->m_loadSynchronously = true; | 431 d->m_loadSynchronously = true; |
432 } | 432 } |
433 | 433 |
| 434 bool ResourceHandle::willLoadFromCache(ResourceRequest&, Frame*) |
| 435 { |
| 436 notImplemented(); |
| 437 return false; |
| 438 } |
| 439 |
434 void prefetchDNS(const String&) | 440 void prefetchDNS(const String&) |
435 { | 441 { |
436 notImplemented(); | 442 notImplemented(); |
437 } | 443 } |
438 | 444 |
439 bool ResourceHandle::loadsBlocked() | 445 bool ResourceHandle::loadsBlocked() |
440 { | 446 { |
441 return false; | 447 return false; |
442 } | 448 } |
443 | 449 |
444 void ResourceHandle::platformSetDefersLoading(bool) | 450 void ResourceHandle::platformSetDefersLoading(bool) |
445 { | 451 { |
446 notImplemented(); | 452 notImplemented(); |
447 } | 453 } |
448 | 454 |
449 } // namespace WebCore | 455 } // namespace WebCore |
OLD | NEW |