summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/dom
diff options
context:
space:
mode:
authorMangesh Ghiware <mghiware@google.com>2011-11-22 17:13:45 -0800
committerMangesh Ghiware <mghiware@google.com>2011-11-22 17:13:45 -0800
commita8052314fbf19b30214750b0dcd2f158376d6f03 (patch)
tree65fe09fe2b2575aad044a68bf101fd4422b5236a /Source/WebCore/dom
parent22e6e8f6e1a5a5e677269d6f7895ff49b1a8f41b (diff)
downloadexternal_webkit-a8052314fbf19b30214750b0dcd2f158376d6f03.zip
external_webkit-a8052314fbf19b30214750b0dcd2f158376d6f03.tar.gz
external_webkit-a8052314fbf19b30214750b0dcd2f158376d6f03.tar.bz2
Move Android specific code inside the ANDROID_META_SUPPORT ifdef.
Fixes bug 5626822: Unguarded WebCore CL Change-Id: Ic150cb72830d59b2d31c132cd65bb4a388e3f9d0
Diffstat (limited to 'Source/WebCore/dom')
-rw-r--r--Source/WebCore/dom/Document.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/dom/Document.cpp b/Source/WebCore/dom/Document.cpp
index 6e21dc3..641d4e5 100644
--- a/Source/WebCore/dom/Document.cpp
+++ b/Source/WebCore/dom/Document.cpp
@@ -2729,8 +2729,8 @@ void Document::processArguments(const String& features, void* data, ArgumentsCal
#ifdef ANDROID_META_SUPPORT
if (frame())
frame()->settings()->setMetadataSettings(keyString, valueString);
-#endif
if (callback && data)
+#endif
callback(keyString, valueString, this, data);
}
}