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

Side by Side Diff: third_party/WebKit/Source/core/loader/DocumentThreadableLoader.cpp

Issue 2746113002: platform/loader: move network/Resource* to loader/fetch (Closed)
Patch Set: git rebase master Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013, Intel Corporation 3 * Copyright (C) 2013, Intel Corporation
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "core/loader/ThreadableLoadingContext.h" 45 #include "core/loader/ThreadableLoadingContext.h"
46 #include "core/loader/private/CrossOriginPreflightResultCache.h" 46 #include "core/loader/private/CrossOriginPreflightResultCache.h"
47 #include "core/page/ChromeClient.h" 47 #include "core/page/ChromeClient.h"
48 #include "core/page/Page.h" 48 #include "core/page/Page.h"
49 #include "platform/SharedBuffer.h" 49 #include "platform/SharedBuffer.h"
50 #include "platform/loader/fetch/CrossOriginAccessControl.h" 50 #include "platform/loader/fetch/CrossOriginAccessControl.h"
51 #include "platform/loader/fetch/FetchRequest.h" 51 #include "platform/loader/fetch/FetchRequest.h"
52 #include "platform/loader/fetch/FetchUtils.h" 52 #include "platform/loader/fetch/FetchUtils.h"
53 #include "platform/loader/fetch/Resource.h" 53 #include "platform/loader/fetch/Resource.h"
54 #include "platform/loader/fetch/ResourceFetcher.h" 54 #include "platform/loader/fetch/ResourceFetcher.h"
55 #include "platform/network/ResourceRequest.h" 55 #include "platform/loader/fetch/ResourceRequest.h"
56 #include "platform/weborigin/SchemeRegistry.h" 56 #include "platform/weborigin/SchemeRegistry.h"
57 #include "platform/weborigin/SecurityOrigin.h" 57 #include "platform/weborigin/SecurityOrigin.h"
58 #include "platform/weborigin/SecurityPolicy.h" 58 #include "platform/weborigin/SecurityPolicy.h"
59 #include "public/platform/Platform.h" 59 #include "public/platform/Platform.h"
60 #include "public/platform/WebURLRequest.h" 60 #include "public/platform/WebURLRequest.h"
61 #include "wtf/Assertions.h" 61 #include "wtf/Assertions.h"
62 #include "wtf/PtrUtil.h" 62 #include "wtf/PtrUtil.h"
63 #include "wtf/WeakPtr.h" 63 #include "wtf/WeakPtr.h"
64 64
65 namespace blink { 65 namespace blink {
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after
1145 } 1145 }
1146 1146
1147 DEFINE_TRACE(DocumentThreadableLoader) { 1147 DEFINE_TRACE(DocumentThreadableLoader) {
1148 visitor->trace(m_resource); 1148 visitor->trace(m_resource);
1149 visitor->trace(m_loadingContext); 1149 visitor->trace(m_loadingContext);
1150 ThreadableLoader::trace(visitor); 1150 ThreadableLoader::trace(visitor);
1151 RawResourceClient::trace(visitor); 1151 RawResourceClient::trace(visitor);
1152 } 1152 }
1153 1153
1154 } // namespace blink 1154 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h ('k') | third_party/WebKit/Source/core/loader/EmptyClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698