| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 * | 29 * |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef LinkRelAttribute_h | 32 #ifndef LinkRelAttribute_h |
| 33 #define LinkRelAttribute_h | 33 #define LinkRelAttribute_h |
| 34 | 34 |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/dom/IconURL.h" | 36 #include "core/dom/IconURL.h" |
| 37 #include "wtf/Allocator.h" | 37 #include "platform/wtf/Allocator.h" |
| 38 #include "wtf/text/WTFString.h" | 38 #include "platform/wtf/text/WTFString.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class CORE_EXPORT LinkRelAttribute { | 42 class CORE_EXPORT LinkRelAttribute { |
| 43 DISALLOW_NEW(); | 43 DISALLOW_NEW(); |
| 44 | 44 |
| 45 public: | 45 public: |
| 46 explicit LinkRelAttribute(const String& = ""); | 46 explicit LinkRelAttribute(const String& = ""); |
| 47 | 47 |
| 48 bool IsStyleSheet() const { return is_style_sheet_; } | 48 bool IsStyleSheet() const { return is_style_sheet_; } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 69 bool is_link_prerender_ : 1; | 69 bool is_link_prerender_ : 1; |
| 70 bool is_link_next_ : 1; | 70 bool is_link_next_ : 1; |
| 71 bool is_import_ : 1; | 71 bool is_import_ : 1; |
| 72 bool is_manifest_ : 1; | 72 bool is_manifest_ : 1; |
| 73 bool is_service_worker_ : 1; | 73 bool is_service_worker_ : 1; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace blink | 76 } // namespace blink |
| 77 | 77 |
| 78 #endif | 78 #endif |
| OLD | NEW |