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

Side by Side Diff: Source/core/html/CrossOriginAttribute.h

Issue 1138743002: Added <link rel=preconnect> crossorigin attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CrossOriginAttribute_h
6 #define CrossOriginAttribute_h
7
8 #include "public/platform/WebCrossOriginAttribute.h"
9 #include "wtf/text/WTFString.h"
10
11 namespace blink {
12
13 CrossOriginAttributeValue crossOriginAttributeValue(const String& value)
14 {
15 if (value.isNull())
16 return CrossOriginAttributeNotSet;
17 if (equalIgnoringCase(value, "use-credentials"))
18 return CrossOriginAttributeUseCredentials;
19 return CrossOriginAttributeAnonymous;
Mike West 2015/05/11 12:53:35 Is this the behavior we current exhibit? That is,
sof 2015/05/11 12:57:30 The invalid value default for the crossorigin attr
20 }
21
22 } // namespace blink
23
24 #endif
25
26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698