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

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

Issue 2191633003: Move ResourceClient to Oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@onheap-raw-resource-client
Patch Set: rebase Created 4 years, 4 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) 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 Apple Inc. All rights reserved. 5 Copyright (C) 2004, 2005, 2006, 2007, 2008 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.
(...skipping 27 matching lines...) Expand all
38 enum class ScriptIntegrityDisposition { 38 enum class ScriptIntegrityDisposition {
39 NotChecked = 0, 39 NotChecked = 0,
40 Failed, 40 Failed,
41 Passed 41 Passed
42 }; 42 };
43 43
44 class FetchRequest; 44 class FetchRequest;
45 class ResourceFetcher; 45 class ResourceFetcher;
46 class ScriptResource; 46 class ScriptResource;
47 47
48 class CORE_EXPORT ScriptResourceClient : public GarbageCollectedMixin, public Re sourceClient { 48 class CORE_EXPORT ScriptResourceClient : public ResourceClient {
49 public: 49 public:
50 ~ScriptResourceClient() override {} 50 ~ScriptResourceClient() override {}
51 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == ScriptType; } 51 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == ScriptType; }
52 ResourceClientType getResourceClientType() const final { return ScriptType; } 52 ResourceClientType getResourceClientType() const final { return ScriptType; }
53 53
54 virtual void notifyAppendData(ScriptResource* resource) { } 54 virtual void notifyAppendData(ScriptResource* resource) { }
55
56 DEFINE_INLINE_VIRTUAL_TRACE() {}
57 }; 55 };
58 56
59 class CORE_EXPORT ScriptResource final : public TextResource { 57 class CORE_EXPORT ScriptResource final : public TextResource {
60 public: 58 public:
61 using ClientType = ScriptResourceClient; 59 using ClientType = ScriptResourceClient;
62 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*); 60 static ScriptResource* fetch(FetchRequest&, ResourceFetcher*);
63 61
64 // Public for testing 62 // Public for testing
65 static ScriptResource* create(const ResourceRequest& request, const String& charset) 63 static ScriptResource* create(const ResourceRequest& request, const String& charset)
66 { 64 {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 IntegrityMetadataSet m_integrityMetadata; 103 IntegrityMetadataSet m_integrityMetadata;
106 104
107 CompressibleString m_script; 105 CompressibleString m_script;
108 }; 106 };
109 107
110 DEFINE_RESOURCE_TYPE_CASTS(Script); 108 DEFINE_RESOURCE_TYPE_CASTS(Script);
111 109
112 } // namespace blink 110 } // namespace blink
113 111
114 #endif 112 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698