Changeset 116204 in webkit


Ignore:
Timestamp:
May 4, 2012 7:54:04 PM (12 years ago)
Author:
tkent@chromium.org
Message:

Rename ICULocale to LocaleICU, part 1
https://bugs.webkit.org/show_bug.cgi?id=85688

Reviewed by Kentaro Hara.

Source/WebCore:

Rename it for consistency. Our convention is Foo<Platform>.{cpp,h}.
This patch changes only file names. We'll rename ICULocale class
by a following patch.

No behavior changes.

  • WebCore.gypi:
  • platform/text/LocaleICU.cpp: Renamed from Source/WebCore/platform/text/ICULocale.cpp.
  • platform/text/LocaleICU.h: Renamed from Source/WebCore/platform/text/ICULocale.h.
  • platform/text/LocalizedDateICU.cpp: Rename ICULocale.h to LocaleICU.h.
  • platform/text/LocalizedNumberICU.cpp: ditto.

Source/WebKit/chromium:

  • tests/LocalizedNumberICUTest.cpp: Rename ICULocale.h to LocaleICU.h.
Location:
trunk/Source
Files:
6 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116203 r116204  
     12012-05-04  Kent Tamura  <tkent@chromium.org>
     2
     3        Rename ICULocale to LocaleICU, part 1
     4        https://bugs.webkit.org/show_bug.cgi?id=85688
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Rename it for consistency. Our convention is Foo<Platform>.{cpp,h}.
     9        This patch changes only file names. We'll rename ICULocale class
     10        by a following patch.
     11
     12        No behavior changes.
     13
     14        * WebCore.gypi:
     15        * platform/text/LocaleICU.cpp: Renamed from Source/WebCore/platform/text/ICULocale.cpp.
     16        * platform/text/LocaleICU.h: Renamed from Source/WebCore/platform/text/ICULocale.h.
     17        * platform/text/LocalizedDateICU.cpp: Rename ICULocale.h to LocaleICU.h.
     18        * platform/text/LocalizedNumberICU.cpp: ditto.
     19
    1202012-05-04  Julien Chaffraix  <jchaffraix@webkit.org>
    221
  • trunk/Source/WebCore/WebCore.gypi

    r116131 r116204  
    44824482            'platform/text/Hyphenation.cpp',
    44834483            'platform/text/Hyphenation.h',
    4484             'platform/text/ICULocale.cpp',
    4485             'platform/text/ICULocale.h',
    44864484            'platform/text/LineEnding.cpp',
     4485            'platform/text/LocaleICU.cpp',
     4486            'platform/text/LocaleICU.h',
    44874487            'platform/text/LocaleToScriptMapping.h',
    44884488            'platform/text/LocaleToScriptMappingDefault.cpp',
  • trunk/Source/WebCore/platform/text/LocaleICU.cpp

    r116203 r116204  
    3030
    3131#include "config.h"
    32 #include "ICULocale.h"
     32#include "LocaleICU.h"
    3333
    3434#include "LocalizedStrings.h"
  • trunk/Source/WebCore/platform/text/LocalizedDateICU.cpp

    r115038 r116204  
    3232#include "LocalizedDate.h"
    3333
    34 #include "ICULocale.h"
     34#include "LocaleICU.h"
    3535#include <limits>
    3636
  • trunk/Source/WebCore/platform/text/LocalizedNumberICU.cpp

    r114359 r116204  
    3131#include "config.h"
    3232
    33 #include "ICULocale.h"
     33#include "LocaleICU.h"
    3434#include "LocalizedNumber.h"
    3535
  • trunk/Source/WebKit/chromium/ChangeLog

    r116195 r116204  
     12012-05-04  Kent Tamura  <tkent@chromium.org>
     2
     3        Rename ICULocale to LocaleICU, part 1
     4        https://bugs.webkit.org/show_bug.cgi?id=85688
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * tests/LocalizedNumberICUTest.cpp: Rename ICULocale.h to LocaleICU.h.
     9
    1102012-05-04  Shawn Singh  <shawnsingh@chromium.org>
    211
  • trunk/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp

    r114347 r116204  
    3131#include "config.h"
    3232
    33 #include "ICULocale.h"
     33#include "LocaleICU.h"
    3434#include <gtest/gtest.h>
    3535#include <wtf/PassOwnPtr.h>
Note: See TracChangeset for help on using the changeset viewer.