Ignore:
Timestamp:
Jan 28, 2019, 10:00:30 PM (6 years ago)
Author:
Ross Kirsling
Message:

Remove unnecessary using namespace WTFs (or at least restrict their scope).
https://bugs.webkit.org/show_bug.cgi?id=193941

Reviewed by Alex Christensen.

Source/JavaScriptCore:

  • API/JSWeakObjectMapRefPrivate.cpp:
  • bytecompiler/NodesCodegen.cpp:
  • heap/MachineStackMarker.cpp:
  • jit/ExecutableAllocator.cpp:
  • jsc.cpp:
  • parser/Nodes.cpp:
  • runtime/DateConstructor.cpp:
  • runtime/DateConversion.cpp:
  • runtime/DateInstance.cpp:
  • runtime/DatePrototype.cpp:
  • runtime/InitializeThreading.cpp:
  • runtime/IteratorOperations.cpp:
  • runtime/JSDateMath.cpp:
  • runtime/JSGlobalObjectFunctions.cpp:
  • runtime/StringPrototype.cpp:
  • runtime/VM.cpp:
  • testRegExp.cpp:
  • tools/JSDollarVM.cpp:
  • yarr/YarrInterpreter.cpp:
  • yarr/YarrJIT.cpp:
  • yarr/YarrPattern.cpp:
  • yarr/YarrUnicodeProperties.cpp:

Source/WebCore:

  • css/CSSBasicShapes.cpp:
  • css/CSSPrimitiveValue.cpp:
  • css/parser/CSSParser.cpp:
  • css/parser/CSSParserSelector.cpp:
  • css/parser/CSSPropertyParser.cpp:
  • dom/Document.cpp:
  • dom/EventListenerMap.cpp:
  • dom/EventTarget.cpp:
  • editing/Editor.cpp:
  • html/HTMLElement.cpp:
  • html/HTMLFontElement.cpp:
  • html/parser/HTMLTokenizer.cpp:
  • html/track/TrackBase.cpp:
  • loader/FTPDirectoryParser.cpp:
  • loader/TextResourceDecoder.cpp:
  • loader/cache/CachedResource.cpp:
  • page/ContextMenuController.cpp:
  • page/Navigator.cpp:
  • platform/Length.cpp:
  • platform/cocoa/KeyEventCocoa.mm:
  • platform/graphics/FontCascade.cpp:
  • platform/graphics/WidthIterator.cpp:
  • platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
  • platform/ios/KeyEventIOS.mm:
  • platform/mac/KeyEventMac.mm:
  • platform/network/HTTPParsers.cpp:
  • platform/text/TextCodecUTF8.cpp:
  • platform/text/TextEncodingRegistry.cpp:
  • platform/win/KeyEventWin.cpp:
  • rendering/BidiRun.cpp:
  • rendering/FloatingObjects.cpp:
  • rendering/RenderBlock.cpp:
  • rendering/RenderListMarker.cpp:
  • rendering/RenderText.cpp:

Source/WebKit:

  • Shared/linux/WebMemorySamplerLinux.cpp:

Source/WebKitLegacy/win:

  • Plugins/PluginMessageThrottlerWin.cpp:
  • Plugins/PluginView.cpp:
  • Plugins/PluginViewWin.cpp:

Tools:

  • TestWebKitAPI/Tests/WTF/ConcurrentPtrHashSet.cpp:
  • TestWebKitAPI/Tests/WTF/Condition.cpp:
  • TestWebKitAPI/Tests/WTF/Lock.cpp:
  • TestWebKitAPI/Tests/WTF/MetaAllocator.cpp:
  • TestWebKitAPI/Tests/WTF/ParkingLot.cpp:
  • TestWebKitAPI/Tests/WTF/RedBlackTree.cpp:
  • TestWebKitAPI/Tests/WTF/ScopedLambda.cpp:
  • TestWebKitAPI/Tests/WTF/Time.cpp:
  • TestWebKitAPI/Tests/WTF/UniqueArray.cpp:
  • TestWebKitAPI/Tests/WebCore/ApplicationManifestParser.cpp:
  • TestWebKitAPI/Tests/WebCore/Logging.cpp:
  • WebKitTestRunner/InjectedBundle/cocoa/InjectedBundlePageCocoa.mm:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/yarr/YarrInterpreter.cpp

    r234916 r240641  
    3838#include <wtf/text/WTFString.h>
    3939
    40 using namespace WTF;
    41 
    4240namespace JSC { namespace Yarr {
    4341
     
    16561654    unsigned* output;
    16571655    InputStream input;
    1658     BumpPointerPool* allocatorPool { nullptr };
     1656    WTF::BumpPointerPool* allocatorPool { nullptr };
    16591657    unsigned startOffset;
    16601658    unsigned remainingMatchCount;
Note: See TracChangeset for help on using the changeset viewer.