diff options
author | Steve Block <steveblock@google.com> | 2009-11-11 23:16:52 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2009-11-12 18:28:34 +0000 |
commit | e431852bff2ca6954b119a8c9471fd676abea029 (patch) | |
tree | 2c0376b2197a76742550bc628154de4036b2fa38 /WebCore/dom | |
parent | a2bbe04f16fb11132b3318fb0aecb290f232c563 (diff) | |
download | external_webkit-e431852bff2ca6954b119a8c9471fd676abea029.zip external_webkit-e431852bff2ca6954b119a8c9471fd676abea029.tar.gz external_webkit-e431852bff2ca6954b119a8c9471fd676abea029.tar.bz2 |
Removes WebCorePrefixAndroid.h to aid WebKit upstreaming.
Content from WebCorePrefixAndroid.h has been moved to WebCorePrefix.h and the Android Makefiles modified to use that file.
- Enabler flags have been moved to WebCore/config.h.
- flex_XXX_T types are defined in WebCore/css/maketokenizer
- Most system includes are alreay present in WebCorePrefix.h
- Some includes have been moved directly to the source files that require them.
- The following includes seem not to be required so have been dropped.
- #include <limits.h>
- #include <math.h>
- #include <stdint.h>
- #include <unistd.h>
Change-Id: I8eba4d0a606463503554955e113d57bdf76a7136
Diffstat (limited to 'WebCore/dom')
-rw-r--r-- | WebCore/dom/Node.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/dom/Node.cpp b/WebCore/dom/Node.cpp index 4b91a40..446efda 100644 --- a/WebCore/dom/Node.cpp +++ b/WebCore/dom/Node.cpp @@ -22,14 +22,14 @@ * Boston, MA 02110-1301, USA. */ +#include "config.h" +#include "Node.h" + #ifdef ANDROID_DOM_LOGGING #define LOG_TAG "webcore" #include "AndroidLog.h" #endif -#include "config.h" -#include "Node.h" - #include "Attr.h" #include "CSSParser.h" #include "CSSRule.h" |