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

Side by Side Diff: Source/core/fetch/FetchRequest.h

Issue 1121263002: Add Accept-CH meta http-equiv support to the preloader. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review nits Created 5 years, 7 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) 2012 Google, Inc. All rights reserved. 2 * Copyright (C) 2012 Google, 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef FetchRequest_h 26 #ifndef FetchRequest_h
27 #define FetchRequest_h 27 #define FetchRequest_h
28 28
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/fetch/ClientHintsPreferences.h"
30 #include "core/fetch/FetchInitiatorInfo.h" 31 #include "core/fetch/FetchInitiatorInfo.h"
31 #include "core/fetch/ResourceLoaderOptions.h" 32 #include "core/fetch/ResourceLoaderOptions.h"
32 #include "platform/network/ResourceLoadPriority.h" 33 #include "platform/network/ResourceLoadPriority.h"
33 #include "platform/network/ResourceRequest.h" 34 #include "platform/network/ResourceRequest.h"
34 #include "wtf/text/AtomicString.h" 35 #include "wtf/text/AtomicString.h"
35 36
36 namespace blink { 37 namespace blink {
37 class SecurityOrigin; 38 class SecurityOrigin;
38 39
39 class CORE_EXPORT FetchRequest { 40 class CORE_EXPORT FetchRequest {
(...skipping 22 matching lines...) Expand all
62 const KURL& url() const { return m_resourceRequest.url(); } 63 const KURL& url() const { return m_resourceRequest.url(); }
63 const String& charset() const { return m_charset; } 64 const String& charset() const { return m_charset; }
64 void setCharset(const String& charset) { m_charset = charset; } 65 void setCharset(const String& charset) { m_charset = charset; }
65 const ResourceLoaderOptions& options() const { return m_options; } 66 const ResourceLoaderOptions& options() const { return m_options; }
66 void setOptions(const ResourceLoaderOptions& options) { m_options = options; } 67 void setOptions(const ResourceLoaderOptions& options) { m_options = options; }
67 ResourceLoadPriority priority() const { return m_priority; } 68 ResourceLoadPriority priority() const { return m_priority; }
68 bool forPreload() const { return m_forPreload; } 69 bool forPreload() const { return m_forPreload; }
69 void setForPreload(bool forPreload) { m_forPreload = forPreload; } 70 void setForPreload(bool forPreload) { m_forPreload = forPreload; }
70 DeferOption defer() const { return m_defer; } 71 DeferOption defer() const { return m_defer; }
71 ResourceWidth resourceWidth() const { return m_resourceWidth; } 72 ResourceWidth resourceWidth() const { return m_resourceWidth; }
73 const ClientHintsPreferences& clientHintsPreferences() const { return m_clie ntHintPreferences; }
72 void setDefer(DeferOption defer) { m_defer = defer; } 74 void setDefer(DeferOption defer) { m_defer = defer; }
73 void setContentSecurityCheck(ContentSecurityPolicyDisposition contentSecurit yPolicyOption) { m_options.contentSecurityPolicyOption = contentSecurityPolicyOp tion; } 75 void setContentSecurityCheck(ContentSecurityPolicyDisposition contentSecurit yPolicyOption) { m_options.contentSecurityPolicyOption = contentSecurityPolicyOp tion; }
74 void setCrossOriginAccessControl(SecurityOrigin*, StoredCredentials, Credent ialRequest); 76 void setCrossOriginAccessControl(SecurityOrigin*, StoredCredentials, Credent ialRequest);
75 void setCrossOriginAccessControl(SecurityOrigin*, StoredCredentials); 77 void setCrossOriginAccessControl(SecurityOrigin*, StoredCredentials);
76 void setCrossOriginAccessControl(SecurityOrigin*, const AtomicString& crossO riginMode); 78 void setCrossOriginAccessControl(SecurityOrigin*, const AtomicString& crossO riginMode);
77 OriginRestriction originRestriction() const { return m_originRestriction; } 79 OriginRestriction originRestriction() const { return m_originRestriction; }
78 void setOriginRestriction(OriginRestriction restriction) { m_originRestricti on = restriction; } 80 void setOriginRestriction(OriginRestriction restriction) { m_originRestricti on = restriction; }
79 void setResourceWidth(ResourceWidth); 81 void setResourceWidth(ResourceWidth);
82 void setClientHintsPreferences(ClientHintsPreferences& preferences) { m_clie ntHintPreferences.set(preferences); }
80 83
81 private: 84 private:
82 ResourceRequest m_resourceRequest; 85 ResourceRequest m_resourceRequest;
83 String m_charset; 86 String m_charset;
84 ResourceLoaderOptions m_options; 87 ResourceLoaderOptions m_options;
85 ResourceLoadPriority m_priority; 88 ResourceLoadPriority m_priority;
86 bool m_forPreload; 89 bool m_forPreload;
87 DeferOption m_defer; 90 DeferOption m_defer;
88 OriginRestriction m_originRestriction; 91 OriginRestriction m_originRestriction;
89 ResourceWidth m_resourceWidth; 92 ResourceWidth m_resourceWidth;
93 ClientHintsPreferences m_clientHintPreferences;
90 }; 94 };
91 95
92 } // namespace blink 96 } // namespace blink
93 97
94 #endif 98 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698