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

Side by Side Diff: third_party/WebKit/Source/platform/loader/fetch/FetchContext.h

Issue 2797983002: Rewrite references to "wtf/" to "platform/wtf/" in platform/loader. (Closed)
Patch Set: Created 3 years, 8 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 21 matching lines...) Expand all
32 #define FetchContext_h 32 #define FetchContext_h
33 33
34 #include "platform/PlatformExport.h" 34 #include "platform/PlatformExport.h"
35 #include "platform/heap/Handle.h" 35 #include "platform/heap/Handle.h"
36 #include "platform/loader/fetch/FetchInitiatorInfo.h" 36 #include "platform/loader/fetch/FetchInitiatorInfo.h"
37 #include "platform/loader/fetch/FetchRequest.h" 37 #include "platform/loader/fetch/FetchRequest.h"
38 #include "platform/loader/fetch/Resource.h" 38 #include "platform/loader/fetch/Resource.h"
39 #include "platform/loader/fetch/ResourceLoadPriority.h" 39 #include "platform/loader/fetch/ResourceLoadPriority.h"
40 #include "platform/loader/fetch/ResourceRequest.h" 40 #include "platform/loader/fetch/ResourceRequest.h"
41 #include "platform/weborigin/SecurityViolationReportingPolicy.h" 41 #include "platform/weborigin/SecurityViolationReportingPolicy.h"
42 #include "wtf/Forward.h" 42 #include "platform/wtf/Forward.h"
43 #include "wtf/Noncopyable.h" 43 #include "platform/wtf/Noncopyable.h"
44 44
45 namespace blink { 45 namespace blink {
46 46
47 class ClientHintsPreferences; 47 class ClientHintsPreferences;
48 class KURL; 48 class KURL;
49 class MHTMLArchive; 49 class MHTMLArchive;
50 class PlatformProbeSink; 50 class PlatformProbeSink;
51 class ResourceError; 51 class ResourceError;
52 class ResourceResponse; 52 class ResourceResponse;
53 class ResourceTimingInfo; 53 class ResourceTimingInfo;
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 protected: 202 protected:
203 FetchContext(); 203 FetchContext();
204 204
205 private: 205 private:
206 Member<PlatformProbeSink> m_platformProbeSink; 206 Member<PlatformProbeSink> m_platformProbeSink;
207 }; 207 };
208 208
209 } // namespace blink 209 } // namespace blink
210 210
211 #endif 211 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698