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

Side by Side Diff: Source/WebCore/platform/network/win/ResourceHandleWin.cpp

Issue 12090050: Revert 138962 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1397/
Patch Set: Created 7 years, 10 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/WebCore/platform/network/soup/ResourceHandleSoup.cpp ('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) 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
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
OLDNEW
« no previous file with comments | « Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698