Ignore:
Timestamp:
Jun 16, 2019, 6:48:13 PM (6 years ago)
Author:
Darin Adler
Message:

Rename AtomicString to AtomString
https://bugs.webkit.org/show_bug.cgi?id=195276

Reviewed by Michael Catanzaro.

  • many files: Let do-webcore-rename do the renaming.

Source/WTF:

  • wtf/text/AtomString.h: After renaming, added AtomicString as a synonym for

now; helps smooth things over with a tiny bit of Apple internal software so
we don't have to do this all at once. Can remove it soon.

Tools:

  • Scripts/do-webcore-rename: Updated with a list of all the identifiers

that mention "atomic string" and changed them to instead say "atom string".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSKeyframesRule.cpp

    r233122 r246490  
    3737namespace WebCore {
    3838
    39 StyleRuleKeyframes::StyleRuleKeyframes(const AtomicString& name)
     39StyleRuleKeyframes::StyleRuleKeyframes(const AtomString& name)
    4040    : StyleRuleBase(Keyframes)
    4141    , m_name(name)
     
    4343}
    4444
    45 StyleRuleKeyframes::StyleRuleKeyframes(const AtomicString& name, std::unique_ptr<DeferredStyleGroupRuleList>&& deferredRules)
     45StyleRuleKeyframes::StyleRuleKeyframes(const AtomString& name, std::unique_ptr<DeferredStyleGroupRuleList>&& deferredRules)
    4646    : StyleRuleBase(Keyframes)
    4747    , m_name(name)
Note: See TracChangeset for help on using the changeset viewer.