OLD | NEW |
---|---|
(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 | |
OLD | NEW |