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

Side by Side Diff: third_party/WebKit/Source/core/html/LinkRelAttribute.h

Issue 1647813003: Remove support for <link rel=subresource> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed and deleted tests Created 4 years, 10 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) 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 DISALLOW_NEW(); 43 DISALLOW_NEW();
44 public: 44 public:
45 explicit LinkRelAttribute(const String& = ""); 45 explicit LinkRelAttribute(const String& = "");
46 46
47 bool isStyleSheet() const { return m_isStyleSheet; } 47 bool isStyleSheet() const { return m_isStyleSheet; }
48 IconType iconType() const { return m_iconType; } 48 IconType iconType() const { return m_iconType; }
49 bool isAlternate() const { return m_isAlternate; } 49 bool isAlternate() const { return m_isAlternate; }
50 bool isDNSPrefetch() const { return m_isDNSPrefetch; } 50 bool isDNSPrefetch() const { return m_isDNSPrefetch; }
51 bool isPreconnect() const { return m_isPreconnect; } 51 bool isPreconnect() const { return m_isPreconnect; }
52 bool isLinkPrefetch() const { return m_isLinkPrefetch; } 52 bool isLinkPrefetch() const { return m_isLinkPrefetch; }
53 bool isLinkSubresource() const { return m_isLinkSubresource; }
54 bool isLinkPreload() const { return m_isLinkPreload; } 53 bool isLinkPreload() const { return m_isLinkPreload; }
55 bool isLinkPrerender() const { return m_isLinkPrerender; } 54 bool isLinkPrerender() const { return m_isLinkPrerender; }
56 bool isLinkNext() const { return m_isLinkNext; } 55 bool isLinkNext() const { return m_isLinkNext; }
57 bool isImport() const { return m_isImport; } 56 bool isImport() const { return m_isImport; }
58 bool isManifest() const { return m_isManifest; } 57 bool isManifest() const { return m_isManifest; }
59 58
60 private: 59 private:
61 IconType m_iconType; 60 IconType m_iconType;
62 bool m_isStyleSheet : 1; 61 bool m_isStyleSheet : 1;
63 bool m_isAlternate : 1; 62 bool m_isAlternate : 1;
64 bool m_isDNSPrefetch : 1; 63 bool m_isDNSPrefetch : 1;
65 bool m_isPreconnect : 1; 64 bool m_isPreconnect : 1;
66 bool m_isLinkPrefetch : 1; 65 bool m_isLinkPrefetch : 1;
67 bool m_isLinkSubresource : 1;
68 bool m_isLinkPreload : 1; 66 bool m_isLinkPreload : 1;
69 bool m_isLinkPrerender : 1; 67 bool m_isLinkPrerender : 1;
70 bool m_isLinkNext : 1; 68 bool m_isLinkNext : 1;
71 bool m_isImport : 1; 69 bool m_isImport : 1;
72 bool m_isManifest : 1; 70 bool m_isManifest : 1;
73 }; 71 };
74 72
75 } // namespace blink 73 } // namespace blink
76 74
77 #endif 75 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698