Commit 7dddac08 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

clang-format

parent 588dd332
...@@ -55,9 +55,9 @@ StringRef get_attr(const xmlChar **attrs, const StringRef &name) { ...@@ -55,9 +55,9 @@ StringRef get_attr(const xmlChar **attrs, const StringRef &name) {
} }
} // namespace } // namespace
namespace { namespace {
ResourceType get_resource_type_for_preload_as(const StringRef &attribute_value) { ResourceType
get_resource_type_for_preload_as(const StringRef &attribute_value) {
if (util::strieq_l("image", attribute_value)) { if (util::strieq_l("image", attribute_value)) {
return REQ_IMG; return REQ_IMG;
} else if (util::strieq_l("style", attribute_value)) { } else if (util::strieq_l("style", attribute_value)) {
...@@ -70,7 +70,6 @@ ResourceType get_resource_type_for_preload_as(const StringRef &attribute_value) ...@@ -70,7 +70,6 @@ ResourceType get_resource_type_for_preload_as(const StringRef &attribute_value)
} }
} // namespace } // namespace
namespace { namespace {
void add_link(ParserData *parser_data, const StringRef &uri, void add_link(ParserData *parser_data, const StringRef &uri,
ResourceType res_type) { ResourceType res_type) {
...@@ -109,7 +108,8 @@ void start_element_func(void *user_data, const xmlChar *src_name, ...@@ -109,7 +108,8 @@ void start_element_func(void *user_data, const xmlChar *src_name,
if (as_attr.empty()) { if (as_attr.empty()) {
return; return;
} }
add_link(parser_data, href_attr, get_resource_type_for_preload_as(as_attr)); add_link(parser_data, href_attr,
get_resource_type_for_preload_as(as_attr));
} }
} else if (util::strieq_l("img", name)) { } else if (util::strieq_l("img", name)) {
auto src_attr = get_attr(attrs, StringRef::from_lit("src")); auto src_attr = get_attr(attrs, StringRef::from_lit("src"));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment