Bug 1430173 Add qualifiers to BorrowedAttrInfo r?baku draft
authorTom Ritter <tom@mozilla.com>
Mon, 26 Feb 2018 13:36:00 -0600
changeset 760148 6fe53be26472dfa163505e171919ffe127a39f99
parent 760147 c2d3a749740c679268bb3a95a20d2e86b9439b2b
push id100551
push userbmo:tom@mozilla.com
push dateMon, 26 Feb 2018 22:12:44 +0000
reviewersbaku
bugs1430173
milestone52.6.1
Bug 1430173 Add qualifiers to BorrowedAttrInfo r?baku Because we added a new file, we rearranged the Unified Build order and now need to fully qualify BorrowedAttrInfo which previously inherited a using statement. MozReview-Commit-ID: BD45k5t9dQU
dom/base/nsXHTMLContentSerializer.cpp
old mode 100644
new mode 100755
--- a/dom/base/nsXHTMLContentSerializer.cpp
+++ b/dom/base/nsXHTMLContentSerializer.cpp
@@ -301,17 +301,17 @@ nsXHTMLContentSerializer::SerializeAttri
   // XXX Unfortunately we need a namespace manager to get
   // attribute URIs.
   for (index = 0; index < count; index++) {
 
     if (aSkipAttr == index) {
         continue;
     }
 
-    BorrowedAttrInfo info = aContent->GetAttrInfoAt(index);
+    mozilla::dom::BorrowedAttrInfo info = aContent->GetAttrInfoAt(index);
     const nsAttrName* name = info.mName;
 
     int32_t namespaceID = name->NamespaceID();
     nsIAtom* attrName = name->LocalName();
     nsIAtom* attrPrefix = name->GetPrefix();
 
     // Filter out any attribute starting with [-|_]moz
     nsDependentAtomString attrNameStr(attrName);