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

Side by Side Diff: third_party/WebKit/Source/core/fetch/ResourceLoader.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 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) 2005, 2006, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2011 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 17 matching lines...) Expand all
28 28
29 #ifndef ResourceLoader_h 29 #ifndef ResourceLoader_h
30 #define ResourceLoader_h 30 #define ResourceLoader_h
31 31
32 #include "core/CoreExport.h" 32 #include "core/CoreExport.h"
33 #include "core/fetch/ResourceLoaderOptions.h" 33 #include "core/fetch/ResourceLoaderOptions.h"
34 #include "platform/network/ResourceRequest.h" 34 #include "platform/network/ResourceRequest.h"
35 #include "public/platform/WebURLLoader.h" 35 #include "public/platform/WebURLLoader.h"
36 #include "public/platform/WebURLLoaderClient.h" 36 #include "public/platform/WebURLLoaderClient.h"
37 #include "wtf/Forward.h" 37 #include "wtf/Forward.h"
38 #include "wtf/RefCounted.h"
39 38
40 namespace blink { 39 namespace blink {
41 40
42 class Resource; 41 class Resource;
43 class ResourceError; 42 class ResourceError;
44 class ResourceFetcher; 43 class ResourceFetcher;
45 44
46 class CORE_EXPORT ResourceLoader final : public GarbageCollectedFinalized<Resour ceLoader>, protected WebURLLoaderClient { 45 class CORE_EXPORT ResourceLoader final : public GarbageCollectedFinalized<Resour ceLoader>, protected WebURLLoaderClient {
47 public: 46 public:
48 static ResourceLoader* create(ResourceFetcher*, Resource*); 47 static ResourceLoader* create(ResourceFetcher*, Resource*);
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 Member<Resource> m_resource; 108 Member<Resource> m_resource;
110 109
111 // Used for sanity checking to make sure we don't experience illegal state 110 // Used for sanity checking to make sure we don't experience illegal state
112 // transitions. 111 // transitions.
113 ConnectionState m_state; 112 ConnectionState m_state;
114 }; 113 };
115 114
116 } // namespace blink 115 } // namespace blink
117 116
118 #endif 117 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/TreeScopeEventContext.h ('k') | third_party/WebKit/Source/core/fileapi/FileList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698