Bug 959150 part 6 - Move the opening brace to the next line in methods whose body is in non-generated .h files under parser/html/. r=smaug.

This commit is contained in:
Henri Sivonen
2014-03-05 21:38:50 +02:00
parent 775e097398
commit b09f44b0e5
12 changed files with 163 additions and 81 deletions

View File

@@ -19,7 +19,8 @@ class nsHtml5AtomEntry : public nsStringHashKey
nsHtml5AtomEntry(KeyTypePointer aStr);
nsHtml5AtomEntry(const nsHtml5AtomEntry& aOther);
~nsHtml5AtomEntry();
inline nsHtml5Atom* GetAtom() {
inline nsHtml5Atom* GetAtom()
{
return mAtom;
}
private:
@@ -84,12 +85,14 @@ class nsHtml5AtomTable
/**
* Empties the table.
*/
void Clear() {
void Clear()
{
mTable.Clear();
}
#ifdef DEBUG
void SetPermittedLookupThread(nsIThread* aThread) {
void SetPermittedLookupThread(nsIThread* aThread)
{
mPermittedLookupThread = aThread;
}
#endif