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

Side by Side Diff: Source/web/AssociatedURLLoader.cpp

Issue 27043003: Move HTTPParsers.cpp/.h to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 2 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/network/HTTPParsers.cpp ('k') | Source/web/FrameLoaderClientImpl.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 21 matching lines...) Expand all
32 #include "AssociatedURLLoader.h" 32 #include "AssociatedURLLoader.h"
33 33
34 #include "WebApplicationCacheHost.h" 34 #include "WebApplicationCacheHost.h"
35 #include "WebDataSource.h" 35 #include "WebDataSource.h"
36 #include "WebFrameImpl.h" 36 #include "WebFrameImpl.h"
37 #include "core/fetch/CrossOriginAccessControl.h" 37 #include "core/fetch/CrossOriginAccessControl.h"
38 #include "core/loader/DocumentThreadableLoader.h" 38 #include "core/loader/DocumentThreadableLoader.h"
39 #include "core/loader/DocumentThreadableLoaderClient.h" 39 #include "core/loader/DocumentThreadableLoaderClient.h"
40 #include "core/platform/chromium/support/WrappedResourceRequest.h" 40 #include "core/platform/chromium/support/WrappedResourceRequest.h"
41 #include "core/platform/chromium/support/WrappedResourceResponse.h" 41 #include "core/platform/chromium/support/WrappedResourceResponse.h"
42 #include "core/platform/network/HTTPParsers.h"
43 #include "core/xml/XMLHttpRequest.h" 42 #include "core/xml/XMLHttpRequest.h"
44 #include "platform/Timer.h" 43 #include "platform/Timer.h"
44 #include "platform/network/HTTPParsers.h"
45 #include "platform/network/ResourceError.h" 45 #include "platform/network/ResourceError.h"
46 #include "public/platform/WebHTTPHeaderVisitor.h" 46 #include "public/platform/WebHTTPHeaderVisitor.h"
47 #include "public/platform/WebString.h" 47 #include "public/platform/WebString.h"
48 #include "public/platform/WebURLError.h" 48 #include "public/platform/WebURLError.h"
49 #include "public/platform/WebURLLoaderClient.h" 49 #include "public/platform/WebURLLoaderClient.h"
50 #include "public/platform/WebURLRequest.h" 50 #include "public/platform/WebURLRequest.h"
51 #include "wtf/HashSet.h" 51 #include "wtf/HashSet.h"
52 #include "wtf/text/WTFString.h" 52 #include "wtf/text/WTFString.h"
53 53
54 using namespace WebCore; 54 using namespace WebCore;
(...skipping 309 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 WebKit 373 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/platform/network/HTTPParsers.cpp ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698