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

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

Issue 2812013004: Rewrite references to "wtf/" to "platform/wtf/" in core/{dom,html,xml}. (Closed)
Patch Set: Created 3 years, 8 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 16 matching lines...) Expand all
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/LinkManifest.h ('k') | third_party/WebKit/Source/core/html/LinkRelAttributeTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698