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

Unified Diff: third_party/WebKit/Source/core/loader/resource/ScriptResourceData.h

Issue 2724673002: [WIP] Introduce ScriptResourceData
Patch Set: Compile fix Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/resource/ScriptResourceData.h
diff --git a/third_party/WebKit/Source/core/loader/resource/ScriptResourceData.h b/third_party/WebKit/Source/core/loader/resource/ScriptResourceData.h
new file mode 100644
index 0000000000000000000000000000000000000000..ea328e0599e786133f09ac639a7817d0b4a55a19
--- /dev/null
+++ b/third_party/WebKit/Source/core/loader/resource/ScriptResourceData.h
@@ -0,0 +1,71 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ScriptResourceData_h
+#define ScriptResourceData_h
+
+#include "core/CoreExport.h"
+#include "platform/heap/Handle.h"
+#include "platform/loader/fetch/AccessControlStatus.h"
+#include "platform/loader/fetch/CachedMetadataHandler.h"
+#include "platform/loader/fetch/ResourceLoaderOptions.h"
+#include "platform/loader/fetch/ResourceResponse.h"
+#include "platform/weborigin/KURL.h"
+#include "platform/wtf/text/WTFString.h"
+#include "public/platform/CORSStatus.h"
+#include "public/platform/WebURLRequest.h"
+
+namespace blink {
+
+class CORE_EXPORT ScriptResourceData final
+ : public GarbageCollectedFinalized<ScriptResourceData> {
+ public:
+ ScriptResourceData(const KURL& url,
+ WebURLRequest::FetchCredentialsMode fetch_credentials_mode,
+ const ResourceResponse& response,
+ bool error_occurred,
+ const AtomicString& source_text,
+ CachedMetadataHandler* cache_handler,
+ CORSStatus cors_status)
+ : url_(url),
+ fetch_credentials_mode_(fetch_credentials_mode),
+ response_(response),
+ error_occurred_(error_occurred),
+ source_text_(source_text),
+ cache_handler_(cache_handler),
+ cors_status_(cors_status) {}
+
+ DEFINE_INLINE_TRACE() { visitor->Trace(cache_handler_); }
+
+ const KURL& Url() const { return url_; }
+ const ResourceResponse GetResponse() const { return response_; }
+ bool ErrorOccurred() const { return error_occurred_; }
+ const String& SourceText() const { return source_text_; }
+ CachedMetadataHandler* CacheHandler() const { return cache_handler_; }
+ WebURLRequest::FetchCredentialsMode GetFetchCredentialsMode() const {
+ return fetch_credentials_mode_;
+ }
+
+ AccessControlStatus CalculateAccessControlStatus() const;
+
+ static bool MimeTypeAllowedByNosniff(const ResourceResponse&);
+
+ private:
+ const KURL url_;
+ const WebURLRequest::FetchCredentialsMode fetch_credentials_mode_;
+
+ const ResourceResponse response_;
+
+ const bool error_occurred_;
+
+ const AtomicString source_text_;
+
+ const Member<CachedMetadataHandler> cache_handler_;
+
+ const CORSStatus cors_status_;
+};
+
+} // namespace blink
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698