From 0f5d4355d7a384679722338d55f65bbb92350cfc Mon Sep 17 00:00:00 2001 From: Naiem Shaik Date: Thu, 19 Jul 2012 10:45:56 -0700 Subject: DOM Optimizations DOM traversal optimizations DOM Core optimizations Prefetch optimization for DOM Tree Traversal Conflicts: Source/WebKit/android/jni/WebViewCore.cpp Change-Id: Icbb8a7229ee9cff1a5401b57c8181f18b9a6d6e0 --- Source/JavaScriptCore/wtf/text/AtomicString.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/JavaScriptCore/wtf/text/AtomicString.h') diff --git a/Source/JavaScriptCore/wtf/text/AtomicString.h b/Source/JavaScriptCore/wtf/text/AtomicString.h index 440700c..5ee9e5d 100644 --- a/Source/JavaScriptCore/wtf/text/AtomicString.h +++ b/Source/JavaScriptCore/wtf/text/AtomicString.h @@ -58,7 +58,7 @@ public: operator const String&() const { return m_string; } const String& string() const { return m_string; }; - AtomicStringImpl* impl() const { return static_cast(m_string.impl()); } + ALWAYS_INLINE AtomicStringImpl* impl() const { return static_cast(m_string.impl()); } const UChar* characters() const { return m_string.characters(); } unsigned length() const { return m_string.length(); } -- cgit v1.1