Changeset 239224 in webkit


Ignore:
Timestamp:
Dec 14, 2018 11:36:54 AM (5 years ago)
Author:
Joseph Pecoraro
Message:

Unreviewed, apply post-landing review comments after r239221.

  • UIProcess/WebPageDebuggable.cpp:

(WebKit::WebPageDebuggable::url const):
Switch to WTF::blankURL() instead of using "about:blank" directly.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r239223 r239224  
     12018-12-14  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Unreviewed, apply post-landing review comments after r239221.
     4
     5        * UIProcess/WebPageDebuggable.cpp:
     6        (WebKit::WebPageDebuggable::url const):
     7        Switch to WTF::blankURL() instead of using "about:blank" directly.
     8
    192018-12-14  Chris Dumez  <cdumez@apple.com>
    210
  • trunk/Source/WebKit/UIProcess/WebPageDebuggable.cpp

    r239221 r239224  
    5656{
    5757    if (!m_page.mainFrame())
    58         return "about:blank"_s;
     58        return WTF::blankURL().string();
    5959
    6060    String url = m_page.mainFrame()->url().string();
    6161    if (url.isEmpty())
    62         return "about:blank"_s;
     62        return WTF::blankURL().string();
    6363
    6464    return url;
Note: See TracChangeset for help on using the changeset viewer.