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

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

Issue 2815053002: Rewrite references to "wtf/" to "platform/wtf/" in core/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) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 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 24 matching lines...) Expand all
35 #include <memory> 35 #include <memory>
36 #include "core/CoreExport.h" 36 #include "core/CoreExport.h"
37 #include "core/loader/ThreadableLoader.h" 37 #include "core/loader/ThreadableLoader.h"
38 #include "platform/Timer.h" 38 #include "platform/Timer.h"
39 #include "platform/heap/Handle.h" 39 #include "platform/heap/Handle.h"
40 #include "platform/loader/fetch/RawResource.h" 40 #include "platform/loader/fetch/RawResource.h"
41 #include "platform/loader/fetch/ResourceError.h" 41 #include "platform/loader/fetch/ResourceError.h"
42 #include "platform/loader/fetch/ResourceOwner.h" 42 #include "platform/loader/fetch/ResourceOwner.h"
43 #include "platform/network/HTTPHeaderMap.h" 43 #include "platform/network/HTTPHeaderMap.h"
44 #include "platform/weborigin/Referrer.h" 44 #include "platform/weborigin/Referrer.h"
45 #include "wtf/Forward.h" 45 #include "platform/wtf/Forward.h"
46 #include "wtf/text/WTFString.h" 46 #include "platform/wtf/text/WTFString.h"
47 47
48 namespace blink { 48 namespace blink {
49 49
50 class Document; 50 class Document;
51 class KURL; 51 class KURL;
52 class ResourceRequest; 52 class ResourceRequest;
53 class SecurityOrigin; 53 class SecurityOrigin;
54 class ThreadableLoaderClient; 54 class ThreadableLoaderClient;
55 class ThreadableLoadingContext; 55 class ThreadableLoadingContext;
56 56
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 // used to populate the HTTP Referer header when following the redirect. 239 // used to populate the HTTP Referer header when following the redirect.
240 bool override_referrer_; 240 bool override_referrer_;
241 Referrer referrer_after_redirect_; 241 Referrer referrer_after_redirect_;
242 242
243 RawResourceClientStateChecker checker_; 243 RawResourceClientStateChecker checker_;
244 }; 244 };
245 245
246 } // namespace blink 246 } // namespace blink
247 247
248 #endif // DocumentThreadableLoader_h 248 #endif // DocumentThreadableLoader_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698