Bug 938865 - Build layout/tables in unified mode; r=roc

This commit is contained in:
Ehsan Akhgari 2013-11-14 21:49:29 -05:00
parent dd99c7a892
commit 9a21ba302a
3 changed files with 10 additions and 1 deletions

View File

@ -2,6 +2,9 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef StackArena_h
#define StackArena_h
#include "nsError.h"
#include "mozilla/Assertions.h"
#include "mozilla/MemoryReporting.h"
@ -91,3 +94,5 @@ private:
};
} // namespace mozilla
#endif

View File

@ -4,6 +4,9 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef SpanningCellSorter_h
#define SpanningCellSorter_h
/*
* Code to sort cells by their colspan, used by BasicTableLayoutStrategy.
*/
@ -93,3 +96,4 @@ private:
void* operator new(size_t sz) CPP_THROW_NEW { return nullptr; }
};
#endif

View File

@ -12,7 +12,7 @@ EXPORTS += [
'nsITableCellLayout.h',
]
SOURCES += [
UNIFIED_SOURCES += [
'BasicTableLayoutStrategy.cpp',
'FixedTableLayoutStrategy.cpp',
'nsCellMap.cpp',