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

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

Issue 1889973002: Refactoring starting a resource load (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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) 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 23 matching lines...) Expand all
34 34
35 namespace blink { 35 namespace blink {
36 36
37 enum class ScriptIntegrityDisposition { 37 enum class ScriptIntegrityDisposition {
38 NotChecked = 0, 38 NotChecked = 0,
39 Failed, 39 Failed,
40 Passed 40 Passed
41 }; 41 };
42 42
43 class FetchRequest; 43 class FetchRequest;
44 class ResourceFetcher;
44 class ScriptResource; 45 class ScriptResource;
45 46
46 class CORE_EXPORT ScriptResourceClient : public ResourceClient { 47 class CORE_EXPORT ScriptResourceClient : public ResourceClient {
47 public: 48 public:
48 ~ScriptResourceClient() override {} 49 ~ScriptResourceClient() override {}
49 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == ScriptType; } 50 static bool isExpectedType(ResourceClient* client) { return client->getResou rceClientType() == ScriptType; }
50 ResourceClientType getResourceClientType() const final { return ScriptType; } 51 ResourceClientType getResourceClientType() const final { return ScriptType; }
51 52
52 virtual void notifyAppendData(ScriptResource* resource) { } 53 virtual void notifyAppendData(ScriptResource* resource) { }
53 }; 54 };
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 IntegrityMetadataSet m_integrityMetadata; 102 IntegrityMetadataSet m_integrityMetadata;
102 103
103 CompressibleString m_script; 104 CompressibleString m_script;
104 }; 105 };
105 106
106 DEFINE_RESOURCE_TYPE_CASTS(Script); 107 DEFINE_RESOURCE_TYPE_CASTS(Script);
107 108
108 } // namespace blink 109 } // namespace blink
109 110
110 #endif 111 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698