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

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

Issue 2700073002: core/loader: create private directory to store private classes (Closed)
Patch Set: Created 3 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
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 24 matching lines...) Expand all
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/frame/Settings.h" 37 #include "core/frame/Settings.h"
38 #include "core/frame/UseCounter.h" 38 #include "core/frame/UseCounter.h"
39 #include "core/html/CrossOriginAttribute.h" 39 #include "core/html/CrossOriginAttribute.h"
40 #include "core/html/LinkRelAttribute.h" 40 #include "core/html/LinkRelAttribute.h"
41 #include "core/html/parser/HTMLPreloadScanner.h" 41 #include "core/html/parser/HTMLPreloadScanner.h"
42 #include "core/inspector/ConsoleMessage.h" 42 #include "core/inspector/ConsoleMessage.h"
43 #include "core/loader/DocumentLoader.h" 43 #include "core/loader/DocumentLoader.h"
44 #include "core/loader/NetworkHintsInterface.h" 44 #include "core/loader/NetworkHintsInterface.h"
45 #include "core/loader/PrerenderHandle.h" 45 #include "core/loader/private/PrerenderHandle.h"
46 #include "core/loader/resource/LinkFetchResource.h" 46 #include "core/loader/resource/LinkFetchResource.h"
47 #include "platform/Prerender.h" 47 #include "platform/Prerender.h"
48 #include "platform/RuntimeEnabledFeatures.h" 48 #include "platform/RuntimeEnabledFeatures.h"
49 #include "platform/loader/fetch/FetchInitiatorTypeNames.h" 49 #include "platform/loader/fetch/FetchInitiatorTypeNames.h"
50 #include "platform/loader/fetch/FetchRequest.h" 50 #include "platform/loader/fetch/FetchRequest.h"
51 #include "platform/loader/fetch/ResourceFetcher.h" 51 #include "platform/loader/fetch/ResourceFetcher.h"
52 #include "platform/network/LinkHeader.h" 52 #include "platform/network/LinkHeader.h"
53 #include "platform/network/NetworkHints.h" 53 #include "platform/network/NetworkHints.h"
54 #include "platform/network/mime/MIMETypeRegistry.h" 54 #include "platform/network/mime/MIMETypeRegistry.h"
55 #include "public/platform/WebPrerender.h" 55 #include "public/platform/WebPrerender.h"
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 488
489 DEFINE_TRACE(LinkLoader) { 489 DEFINE_TRACE(LinkLoader) {
490 visitor->trace(m_client); 490 visitor->trace(m_client);
491 visitor->trace(m_prerender); 491 visitor->trace(m_prerender);
492 visitor->trace(m_linkPreloadResourceClient); 492 visitor->trace(m_linkPreloadResourceClient);
493 ResourceOwner<Resource, ResourceClient>::trace(visitor); 493 ResourceOwner<Resource, ResourceClient>::trace(visitor);
494 PrerenderClient::trace(visitor); 494 PrerenderClient::trace(visitor);
495 } 495 }
496 496
497 } // namespace blink 497 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/HttpEquiv.cpp ('k') | third_party/WebKit/Source/core/loader/PrerenderHandle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698