Changeset 248585 in webkit


Ignore:
Timestamp:
Aug 12, 2019 6:23:20 PM (5 years ago)
Author:
Chris Dumez
Message:

Fix bad RELEASE_LOG_ERROR under ProvisionalPageProxy::ProvisionalPageProxy()
https://bugs.webkit.org/show_bug.cgi?id=200646

Reviewed by Alex Christensen.

Fix bad RELEASE_LOG_ERROR under ProvisionalPageProxy::ProvisionalPageProxy(). Should be a
simple RELEASE_LOG() as this is not an error.

  • UIProcess/ProvisionalPageProxy.cpp:

(WebKit::ProvisionalPageProxy::ProvisionalPageProxy):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r248552 r248585  
     12019-08-12  Chris Dumez  <cdumez@apple.com>
     2
     3        Fix bad RELEASE_LOG_ERROR under ProvisionalPageProxy::ProvisionalPageProxy()
     4        https://bugs.webkit.org/show_bug.cgi?id=200646
     5
     6        Reviewed by Alex Christensen.
     7
     8        Fix bad RELEASE_LOG_ERROR under ProvisionalPageProxy::ProvisionalPageProxy(). Should be a
     9        simple RELEASE_LOG() as this is not an error.
     10
     11        * UIProcess/ProvisionalPageProxy.cpp:
     12        (WebKit::ProvisionalPageProxy::ProvisionalPageProxy):
     13
    1142019-08-12  Sam Weinig  <weinig@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/ProvisionalPageProxy.cpp

    r247146 r248585  
    6464#endif
    6565{
    66     RELEASE_LOG_ERROR_IF_ALLOWED(ProcessSwapping, "ProvisionalPageProxy: pageID = %" PRIu64 " navigationID = %" PRIu64 " suspendedPage: %p", m_page.pageID().toUInt64(), navigationID, suspendedPage.get());
     66    RELEASE_LOG_IF_ALLOWED(ProcessSwapping, "ProvisionalPageProxy: pageID = %" PRIu64 " navigationID = %" PRIu64 " suspendedPage: %p", m_page.pageID().toUInt64(), navigationID, suspendedPage.get());
    6767
    6868    m_process->addMessageReceiver(Messages::WebPageProxy::messageReceiverName(), m_page.pageID(), *this);
Note: See TracChangeset for help on using the changeset viewer.