OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/savable_resources.h" | 5 #include "content/renderer/savable_resources.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 element.hasHTMLTagName("tr") || | 159 element.hasHTMLTagName("tr") || |
160 element.hasHTMLTagName("td")) { | 160 element.hasHTMLTagName("td")) { |
161 attribute_name = "background"; | 161 attribute_name = "background"; |
162 } else if (element.hasHTMLTagName("blockquote") || | 162 } else if (element.hasHTMLTagName("blockquote") || |
163 element.hasHTMLTagName("q") || | 163 element.hasHTMLTagName("q") || |
164 element.hasHTMLTagName("del") || | 164 element.hasHTMLTagName("del") || |
165 element.hasHTMLTagName("ins")) { | 165 element.hasHTMLTagName("ins")) { |
166 attribute_name = "cite"; | 166 attribute_name = "cite"; |
167 } else if (element.hasHTMLTagName("link")) { | 167 } else if (element.hasHTMLTagName("link")) { |
168 // If the link element is not linked to css, ignore it. | 168 // If the link element is not linked to css, ignore it. |
169 if (LowerCaseEqualsASCII(element.getAttribute("type"), "text/css")) { | 169 if (base::LowerCaseEqualsASCII( |
| 170 base::string16(element.getAttribute("type")), "text/css")) { |
170 // TODO(jnd): Add support for extracting links of sub-resources which | 171 // TODO(jnd): Add support for extracting links of sub-resources which |
171 // are inside style-sheet such as @import, url(), etc. | 172 // are inside style-sheet such as @import, url(), etc. |
172 // See bug: http://b/issue?id=1111667. | 173 // See bug: http://b/issue?id=1111667. |
173 attribute_name = "href"; | 174 attribute_name = "href"; |
174 } | 175 } |
175 } | 176 } |
176 if (!attribute_name) | 177 if (!attribute_name) |
177 return WebString(); | 178 return WebString(); |
178 WebString value = element.getAttribute(WebString::fromUTF8(attribute_name)); | 179 WebString value = element.getAttribute(WebString::fromUTF8(attribute_name)); |
179 // If value has content and not start with "javascript:" then return it, | 180 // If value has content and not start with "javascript:" then return it, |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 it != frames_set.end(); ++it) { | 227 it != frames_set.end(); ++it) { |
227 // Append unique frame source to savable frame list. | 228 // Append unique frame source to savable frame list. |
228 if (resources_set.find(*it) == resources_set.end()) | 229 if (resources_set.find(*it) == resources_set.end()) |
229 result->frames_list->push_back(*it); | 230 result->frames_list->push_back(*it); |
230 } | 231 } |
231 | 232 |
232 return true; | 233 return true; |
233 } | 234 } |
234 | 235 |
235 } // namespace content | 236 } // namespace content |
OLD | NEW |