From aeec677fc873985e064bfd6797c9f010f169f39c Mon Sep 17 00:00:00 2001 From: "tkent@chromium.org" Date: Tue, 17 Apr 2012 05:57:20 +0000 Subject: [PATCH] Rename LocalizedNumberICU.h to ICULocale.h https://bugs.webkit.org/show_bug.cgi?id=84119 Reviewed by Kentaro Hara. Source/WebCore: LocalizedNumberICU.h contains only ICULocale class. It should be named as ICULocale.h. We're going to move some functions in LocalizedDateICU.cpp and LocalizedCalendarICU.cpp to ICULocale, and add unit tests for them. * WebCore.gypi: Rename LocalizedNumberICU.h to ICULocale.h * platform/text/ICULocale.h: Renamed from Source/WebCore/platform/text/LocalizedNumberICU.h. * platform/text/LocalizedNumberICU.cpp: Rename LocalizedNumberICU.h to ICULocale.h Source/WebKit/chromium: * tests/LocalizedNumberICUTest.cpp: Rename LocalizedNumberICU.h to ICULocale.h git-svn-id: http://svn.webkit.org/repository/webkit/trunk@114347 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebCore/ChangeLog | 18 ++++++++++++++++++ Source/WebCore/WebCore.gypi | 2 +- .../text/{LocalizedNumberICU.h => ICULocale.h} | 4 ++-- Source/WebCore/platform/text/LocalizedNumberICU.cpp | 2 +- Source/WebKit/chromium/ChangeLog | 9 +++++++++ .../WebKit/chromium/tests/LocalizedNumberICUTest.cpp | 2 +- 6 files changed, 32 insertions(+), 5 deletions(-) rename Source/WebCore/platform/text/{LocalizedNumberICU.h => ICULocale.h} (98%) diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index c1d5dcf..f620507 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,21 @@ +2012-04-16 Kent Tamura + + Rename LocalizedNumberICU.h to ICULocale.h + https://bugs.webkit.org/show_bug.cgi?id=84119 + + Reviewed by Kentaro Hara. + + LocalizedNumberICU.h contains only ICULocale class. It should be + named as ICULocale.h. We're going to move some functions in + LocalizedDateICU.cpp and LocalizedCalendarICU.cpp to ICULocale, + and add unit tests for them. + + * WebCore.gypi: Rename LocalizedNumberICU.h to ICULocale.h + * platform/text/ICULocale.h: + Renamed from Source/WebCore/platform/text/LocalizedNumberICU.h. + * platform/text/LocalizedNumberICU.cpp: + Rename LocalizedNumberICU.h to ICULocale.h + 2012-04-16 James Robinson [chromium] Move paintRenderedResultsToCanvas code into DrawingBuffer diff --git a/Source/WebCore/WebCore.gypi b/Source/WebCore/WebCore.gypi index 651c6ed..6843028 100644 --- a/Source/WebCore/WebCore.gypi +++ b/Source/WebCore/WebCore.gypi @@ -4449,6 +4449,7 @@ 'platform/text/BidiContext.cpp', 'platform/text/Hyphenation.cpp', 'platform/text/Hyphenation.h', + 'platform/text/ICULocale.h', 'platform/text/LineEnding.cpp', 'platform/text/LocaleToScriptMapping.h', 'platform/text/LocaleToScriptMappingDefault.cpp', @@ -4460,7 +4461,6 @@ 'platform/text/LocalizedDateNone.cpp', 'platform/text/LocalizedNumber.h', 'platform/text/LocalizedNumberICU.cpp', - 'platform/text/LocalizedNumberICU.h', 'platform/text/LocalizedNumberNone.cpp', 'platform/text/ParserUtilities.h', 'platform/text/QuotedPrintable.h', diff --git a/Source/WebCore/platform/text/LocalizedNumberICU.h b/Source/WebCore/platform/text/ICULocale.h similarity index 98% rename from Source/WebCore/platform/text/LocalizedNumberICU.h rename to Source/WebCore/platform/text/ICULocale.h index fd85622..67f7704 100644 --- a/Source/WebCore/platform/text/LocalizedNumberICU.h +++ b/Source/WebCore/platform/text/ICULocale.h @@ -28,8 +28,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef LocalizedNumberICU_h -#define LocalizedNumberICU_h +#ifndef ICULocale_h +#define ICULocale_h #include #include diff --git a/Source/WebCore/platform/text/LocalizedNumberICU.cpp b/Source/WebCore/platform/text/LocalizedNumberICU.cpp index 76f7d2c..d87ac42 100644 --- a/Source/WebCore/platform/text/LocalizedNumberICU.cpp +++ b/Source/WebCore/platform/text/LocalizedNumberICU.cpp @@ -29,8 +29,8 @@ */ #include "config.h" -#include "LocalizedNumberICU.h" +#include "ICULocale.h" #include "LocalizedNumber.h" #include #include diff --git a/Source/WebKit/chromium/ChangeLog b/Source/WebKit/chromium/ChangeLog index f2950c4..ec0d03f 100644 --- a/Source/WebKit/chromium/ChangeLog +++ b/Source/WebKit/chromium/ChangeLog @@ -1,3 +1,12 @@ +2012-04-16 Kent Tamura + + Rename LocalizedNumberICU.h to ICULocale.h + https://bugs.webkit.org/show_bug.cgi?id=84119 + + Reviewed by Kentaro Hara. + + * tests/LocalizedNumberICUTest.cpp: Rename LocalizedNumberICU.h to ICULocale.h + 2012-04-16 Dana Jansens [chromium] Expose compositor filters to Aura through WebLayer diff --git a/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp b/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp index 6203d35..6af14192 100644 --- a/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp +++ b/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp @@ -29,8 +29,8 @@ */ #include "config.h" -#include "LocalizedNumberICU.h" +#include "ICULocale.h" #include #include -- 2.7.4