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

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

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org>
4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 6
7 This library is free software; you can redistribute it and/or 7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public 8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either 9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version. 10 version 2 of the License, or (at your option) any later version.
11 11
12 This library is distributed in the hope that it will be useful, 12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details. 15 Library General Public License for more details.
16 16
17 You should have received a copy of the GNU Library General Public License 17 You should have received a copy of the GNU Library General Public License
18 along with this library; see the file COPYING.LIB. If not, write to 18 along with this library; see the file COPYING.LIB. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. 20 Boston, MA 02110-1301, USA.
21 */ 21 */
22 22
23 #ifndef Resource_h 23 #ifndef Resource_h
24 #define Resource_h 24 #define Resource_h
25 25
26 #include "core/CoreExport.h" 26 #include "core/CoreExport.h"
27 #include "core/fetch/CachedMetadataHandler.h" 27 #include "core/fetch/CachedMetadataHandler.h"
28 #include "core/fetch/ResourceLoader.h"
28 #include "core/fetch/ResourceLoaderOptions.h" 29 #include "core/fetch/ResourceLoaderOptions.h"
29 #include "platform/Timer.h" 30 #include "platform/Timer.h"
30 #include "platform/network/ResourceError.h" 31 #include "platform/network/ResourceError.h"
31 #include "platform/network/ResourceLoadPriority.h" 32 #include "platform/network/ResourceLoadPriority.h"
32 #include "platform/network/ResourceRequest.h" 33 #include "platform/network/ResourceRequest.h"
33 #include "platform/network/ResourceResponse.h" 34 #include "platform/network/ResourceResponse.h"
34 #include "platform/scheduler/CancellableTaskFactory.h" 35 #include "platform/scheduler/CancellableTaskFactory.h"
35 #include "public/platform/WebDataConsumerHandle.h" 36 #include "public/platform/WebDataConsumerHandle.h"
36 #include "public/platform/WebMemoryDumpProvider.h" 37 #include "public/platform/WebMemoryDumpProvider.h"
37 #include "wtf/Allocator.h" 38 #include "wtf/Allocator.h"
38 #include "wtf/HashCountedSet.h" 39 #include "wtf/HashCountedSet.h"
39 #include "wtf/HashSet.h" 40 #include "wtf/HashSet.h"
40 #include "wtf/OwnPtr.h" 41 #include "wtf/OwnPtr.h"
41 #include "wtf/text/WTFString.h" 42 #include "wtf/text/WTFString.h"
42 43
43 // FIXME(crbug.com/352043): This is temporarily enabled even on RELEASE to diagn ose a wild crash. 44 // FIXME(crbug.com/352043): This is temporarily enabled even on RELEASE to diagn ose a wild crash.
44 #define ENABLE_RESOURCE_IS_DELETED_CHECK 45 #define ENABLE_RESOURCE_IS_DELETED_CHECK
45 46
46 namespace blink { 47 namespace blink {
47 48
48 struct FetchInitiatorInfo; 49 struct FetchInitiatorInfo;
49 class CachedMetadata; 50 class CachedMetadata;
50 class FetchRequest; 51 class FetchRequest;
51 class ResourceClient; 52 class ResourceClient;
52 class ResourcePtrBase; 53 class ResourcePtrBase;
53 class ResourceFetcher; 54 class ResourceFetcher;
54 class ResourceTimingInfo; 55 class ResourceTimingInfo;
55 class InspectorResource; 56 class InspectorResource;
56 class ResourceLoader;
57 class SecurityOrigin; 57 class SecurityOrigin;
58 class SharedBuffer; 58 class SharedBuffer;
59 59
60 // A resource that is held in the cache. Classes who want to use this object sho uld derive 60 // A resource that is held in the cache. Classes who want to use this object sho uld derive
61 // from ResourceClient, to get the function calls in case the requested data has arrived. 61 // from ResourceClient, to get the function calls in case the requested data has arrived.
62 // This class also does the actual communication with the loader to obtain the r esource from the network. 62 // This class also does the actual communication with the loader to obtain the r esource from the network.
63 class CORE_EXPORT Resource : public NoBaseWillBeGarbageCollectedFinalized<Resour ce> { 63 class CORE_EXPORT Resource : public NoBaseWillBeGarbageCollectedFinalized<Resour ce> {
64 WTF_MAKE_NONCOPYABLE(Resource); USING_FAST_MALLOC_WILL_BE_REMOVED(Resource); 64 WTF_MAKE_NONCOPYABLE(Resource); USING_FAST_MALLOC_WILL_BE_REMOVED(Resource);
65 friend class InspectorResource; 65 friend class InspectorResource;
66 66
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 const char* ResourceTypeName(Resource::Type); 439 const char* ResourceTypeName(Resource::Type);
440 #endif 440 #endif
441 441
442 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \ 442 #define DEFINE_RESOURCE_TYPE_CASTS(typeName) \
443 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \ 443 DEFINE_TYPE_CASTS(typeName##Resource, Resource, resource, resource->type() = = Resource::typeName, resource.type() == Resource::typeName); \
444 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); } 444 inline typeName##Resource* to##typeName##Resource(const ResourcePtr<Resource >& ptr) { return to##typeName##Resource(ptr.get()); }
445 445
446 } 446 }
447 447
448 #endif 448 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/DocumentResource.cpp ('k') | third_party/WebKit/Source/core/fetch/ResourceFetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698