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

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

Issue 2346663004: Moving platform tracing things into platform/tracing. (Closed)
Patch Set: Created 4 years, 3 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "core/loader/NetworkHintsInterface.h" 55 #include "core/loader/NetworkHintsInterface.h"
56 #include "core/loader/PingLoader.h" 56 #include "core/loader/PingLoader.h"
57 #include "core/loader/ProgressTracker.h" 57 #include "core/loader/ProgressTracker.h"
58 #include "core/loader/appcache/ApplicationCacheHost.h" 58 #include "core/loader/appcache/ApplicationCacheHost.h"
59 #include "core/page/NetworkStateNotifier.h" 59 #include "core/page/NetworkStateNotifier.h"
60 #include "core/page/Page.h" 60 #include "core/page/Page.h"
61 #include "core/paint/FirstMeaningfulPaintDetector.h" 61 #include "core/paint/FirstMeaningfulPaintDetector.h"
62 #include "core/svg/graphics/SVGImageChromeClient.h" 62 #include "core/svg/graphics/SVGImageChromeClient.h"
63 #include "core/timing/DOMWindowPerformance.h" 63 #include "core/timing/DOMWindowPerformance.h"
64 #include "core/timing/Performance.h" 64 #include "core/timing/Performance.h"
65 #include "platform/TracedValue.h"
66 #include "platform/mhtml/MHTMLArchive.h" 65 #include "platform/mhtml/MHTMLArchive.h"
67 #include "platform/network/NetworkUtils.h" 66 #include "platform/network/NetworkUtils.h"
68 #include "platform/network/ResourceLoadPriority.h" 67 #include "platform/network/ResourceLoadPriority.h"
69 #include "platform/network/ResourceTimingInfo.h" 68 #include "platform/network/ResourceTimingInfo.h"
69 #include "platform/tracing/TracedValue.h"
70 #include "platform/weborigin/SchemeRegistry.h" 70 #include "platform/weborigin/SchemeRegistry.h"
71 #include "platform/weborigin/SecurityPolicy.h" 71 #include "platform/weborigin/SecurityPolicy.h"
72 #include "public/platform/WebCachePolicy.h" 72 #include "public/platform/WebCachePolicy.h"
73 #include "public/platform/WebDocumentSubresourceFilter.h" 73 #include "public/platform/WebDocumentSubresourceFilter.h"
74 #include "public/platform/WebFrameScheduler.h" 74 #include "public/platform/WebFrameScheduler.h"
75 #include "public/platform/WebInsecureRequestPolicy.h" 75 #include "public/platform/WebInsecureRequestPolicy.h"
76 #include "public/platform/WebViewScheduler.h" 76 #include "public/platform/WebViewScheduler.h"
77 #include <algorithm> 77 #include <algorithm>
78 #include <memory> 78 #include <memory>
79 79
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 } 799 }
800 800
801 DEFINE_TRACE(FrameFetchContext) 801 DEFINE_TRACE(FrameFetchContext)
802 { 802 {
803 visitor->trace(m_document); 803 visitor->trace(m_document);
804 visitor->trace(m_documentLoader); 804 visitor->trace(m_documentLoader);
805 FetchContext::trace(visitor); 805 FetchContext::trace(visitor);
806 } 806 }
807 807
808 } // namespace blink 808 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698