diff options
author | Tom Ritter <tom@mozilla.com> | 2018-02-26 13:36:00 -0600 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-03-14 11:32:49 +0100 |
commit | b9df3c80953dbba5067c09475402f7e583e907fb (patch) | |
tree | aad73486162313444f730232ae20b1eb500e58c5 /dom/base/nsXHTMLContentSerializer.cpp | |
parent | 4a2c5832e191de6f316e1b3888218903d14df0af (diff) | |
download | uxp-b9df3c80953dbba5067c09475402f7e583e907fb.tar.gz |
Bug 1430173 - Add qualifiers to BorrowedAttrInfo. r=baku, a=RyanVM
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
--HG--
extra : transplant_source : o%E5%3B%E2dr%DF%A1cP%5E%17%19%19%FF%E1%27%A3%9F%99
Diffstat (limited to 'dom/base/nsXHTMLContentSerializer.cpp')
-rwxr-xr-x[-rw-r--r--] | dom/base/nsXHTMLContentSerializer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/base/nsXHTMLContentSerializer.cpp b/dom/base/nsXHTMLContentSerializer.cpp index 0dc31d7aec..111ed46c71 100644..100755 --- a/dom/base/nsXHTMLContentSerializer.cpp +++ b/dom/base/nsXHTMLContentSerializer.cpp @@ -306,7 +306,7 @@ nsXHTMLContentSerializer::SerializeAttributes(nsIContent* aContent, continue; } - BorrowedAttrInfo info = aContent->GetAttrInfoAt(index); + mozilla::dom::BorrowedAttrInfo info = aContent->GetAttrInfoAt(index); const nsAttrName* name = info.mName; int32_t namespaceID = name->NamespaceID(); |