[chromium] Fix incorrect #ifdef WEBKIT_IMPLEMENTATION statements
authorshawnsingh@chromium.org <shawnsingh@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 26 Jun 2012 16:20:07 +0000 (16:20 +0000)
committershawnsingh@chromium.org <shawnsingh@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 26 Jun 2012 16:20:07 +0000 (16:20 +0000)
commitf24dfd144d743ba0ba25f3ab8f10473dad39b607
tree34fb943465da41d63ab9d5067e5d37d9549931e6
parentc7eb63af74b24ebfb82b53613f2f7ddffe04844e
[chromium] Fix incorrect #ifdef WEBKIT_IMPLEMENTATION statements
https://bugs.webkit.org/show_bug.cgi?id=89931

Reviewed by James Robinson.

WEBKIT_IMPLEMENTATION is defined as either 0 or 1, so the usage of
#ifdef or #if have different behavior. There are some places in
the code that use "#ifdef WEBKIT_IMLPEMENTATION", but they should
actually be "#if WEBKIT_IMPLEMENTATION". This patch fixes those
#ifdef statements.

* public/WebTextRun.h:
(WebTextRun):
* public/linux/WebFontRenderStyle.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121264 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Source/WebKit/chromium/ChangeLog
Source/WebKit/chromium/public/WebTextRun.h
Source/WebKit/chromium/public/linux/WebFontRenderStyle.h