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

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

Issue 2497463004: Loading: move core/fetch/*Resource* to core/loader/resource/ (Closed)
Patch Set: [rebase] Created 4 years, 1 month 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 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 18 matching lines...) Expand all
29 * 29 *
30 */ 30 */
31 31
32 #include "core/loader/LinkLoader.h" 32 #include "core/loader/LinkLoader.h"
33 33
34 #include "core/css/MediaList.h" 34 #include "core/css/MediaList.h"
35 #include "core/css/MediaQueryEvaluator.h" 35 #include "core/css/MediaQueryEvaluator.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/fetch/FetchInitiatorTypeNames.h" 37 #include "core/fetch/FetchInitiatorTypeNames.h"
38 #include "core/fetch/FetchRequest.h" 38 #include "core/fetch/FetchRequest.h"
39 #include "core/fetch/LinkFetchResource.h"
40 #include "core/fetch/ResourceFetcher.h" 39 #include "core/fetch/ResourceFetcher.h"
41 #include "core/frame/Settings.h" 40 #include "core/frame/Settings.h"
42 #include "core/frame/UseCounter.h" 41 #include "core/frame/UseCounter.h"
43 #include "core/html/CrossOriginAttribute.h" 42 #include "core/html/CrossOriginAttribute.h"
44 #include "core/html/LinkRelAttribute.h" 43 #include "core/html/LinkRelAttribute.h"
45 #include "core/html/parser/HTMLPreloadScanner.h" 44 #include "core/html/parser/HTMLPreloadScanner.h"
46 #include "core/inspector/ConsoleMessage.h" 45 #include "core/inspector/ConsoleMessage.h"
47 #include "core/loader/DocumentLoader.h" 46 #include "core/loader/DocumentLoader.h"
48 #include "core/loader/NetworkHintsInterface.h" 47 #include "core/loader/NetworkHintsInterface.h"
49 #include "core/loader/PrerenderHandle.h" 48 #include "core/loader/PrerenderHandle.h"
49 #include "core/loader/resource/LinkFetchResource.h"
50 #include "platform/MIMETypeRegistry.h" 50 #include "platform/MIMETypeRegistry.h"
51 #include "platform/Prerender.h" 51 #include "platform/Prerender.h"
52 #include "platform/RuntimeEnabledFeatures.h" 52 #include "platform/RuntimeEnabledFeatures.h"
53 #include "platform/network/LinkHeader.h" 53 #include "platform/network/LinkHeader.h"
54 #include "platform/network/NetworkHints.h" 54 #include "platform/network/NetworkHints.h"
55 #include "public/platform/WebPrerender.h" 55 #include "public/platform/WebPrerender.h"
56 56
57 namespace blink { 57 namespace blink {
58 58
59 static unsigned prerenderRelTypesFromRelAttribute( 59 static unsigned prerenderRelTypesFromRelAttribute(
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 477
478 DEFINE_TRACE(LinkLoader) { 478 DEFINE_TRACE(LinkLoader) {
479 visitor->trace(m_client); 479 visitor->trace(m_client);
480 visitor->trace(m_prerender); 480 visitor->trace(m_prerender);
481 visitor->trace(m_linkPreloadResourceClient); 481 visitor->trace(m_linkPreloadResourceClient);
482 ResourceOwner<Resource, ResourceClient>::trace(visitor); 482 ResourceOwner<Resource, ResourceClient>::trace(visitor);
483 PrerenderClient::trace(visitor); 483 PrerenderClient::trace(visitor);
484 } 484 }
485 485
486 } // namespace blink 486 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/LinkLoader.h ('k') | third_party/WebKit/Source/core/loader/LinkPreloadResourceClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698