Changeset 260476 in webkit


Ignore:
Timestamp:
Apr 21, 2020 5:27:35 PM (4 years ago)
Author:
ddkilzer@apple.com
Message:

Fix extra/missing #undef statements
<https://webkit.org/b/210818>
<rdar://problem/61973329>

Reviewed by Chris Dumez.

  • UIProcess/Network/NetworkProcessProxy.cpp:
  • Remove #undef MESSAGE_CHECK_URL. It is no longer used.
  • UIProcess/WebPageProxy.cpp:
  • Add missing #undef MESSAGE_CHECK_COMPLETION.
  • Sort #undef in reverse order of #define.
  • UIProcess/mac/WebPageProxyMac.mm:
  • Add missing #undef MESSAGE_CHECK_WITH_RETURN_VALUE.
  • Sort #undef in reverse order of #define.
Location:
trunk/Source/WebKit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r260475 r260476  
     12020-04-21  David Kilzer  <ddkilzer@apple.com>
     2
     3        Fix extra/missing #undef statements
     4        <https://webkit.org/b/210818>
     5        <rdar://problem/61973329>
     6
     7        Reviewed by Chris Dumez.
     8
     9        * UIProcess/Network/NetworkProcessProxy.cpp:
     10        - Remove #undef MESSAGE_CHECK_URL.  It is no longer used.
     11        * UIProcess/WebPageProxy.cpp:
     12        - Add missing #undef MESSAGE_CHECK_COMPLETION.
     13        - Sort #undef in reverse order of #define.
     14        * UIProcess/mac/WebPageProxyMac.mm:
     15        - Add missing #undef MESSAGE_CHECK_WITH_RETURN_VALUE.
     16        - Sort #undef in reverse order of #define.
     17
    1182020-04-21  Chris Dumez  <cdumez@apple.com>
    219
  • trunk/Source/WebKit/UIProcess/Network/NetworkProcessProxy.cpp

    r260475 r260476  
    14911491
    14921492#undef MESSAGE_CHECK
    1493 #undef MESSAGE_CHECK_URL
  • trunk/Source/WebKit/UIProcess/WebPageProxy.cpp

    r260475 r260476  
    1018110181} // namespace WebKit
    1018210182
     10183#undef RELEASE_LOG_IF_ALLOWED
     10184#undef MESSAGE_CHECK_COMPLETION
     10185#undef MESSAGE_CHECK_URL
     10186#undef MESSAGE_CHECK
    1018310187#undef MERGE_WHEEL_EVENTS
    10184 #undef MESSAGE_CHECK
    10185 #undef MESSAGE_CHECK_URL
    10186 #undef RELEASE_LOG_IF_ALLOWED
  • trunk/Source/WebKit/UIProcess/mac/WebPageProxyMac.mm

    r259843 r260476  
    11/*
    2  * Copyright (C) 2010-2019 Apple Inc. All rights reserved.
     2 * Copyright (C) 2010-2020 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    674674#endif // PLATFORM(MAC)
    675675
     676#undef MESSAGE_CHECK_WITH_RETURN_VALUE
     677#undef MESSAGE_CHECK_URL
    676678#undef MESSAGE_CHECK
    677 #undef MESSAGE_CHECK_URL
Note: See TracChangeset for help on using the changeset viewer.