⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 187136 in webkit


Ignore:
Timestamp:
Jul 21, 2015, 4:33:37 PM (11 years ago)
Author:
dbates@webkit.org
Message:

Fix the build following <https://trac.webkit.org/changeset/187129>
(https://bugs.webkit.org/show_bug.cgi?id=147112)

  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::reinstateNetworkProcessAssertionState): Guard implementation with PLATFORM(IOS)
since this logic is specific to the iOS port.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r187135 r187136  
     12015-07-21  Daniel Bates  <dabates@apple.com>
     2
     3        Fix the build following <https://trac.webkit.org/changeset/187129>
     4        (https://bugs.webkit.org/show_bug.cgi?id=147112)
     5
     6        * UIProcess/WebProcessProxy.cpp:
     7        (WebKit::WebProcessProxy::reinstateNetworkProcessAssertionState): Guard implementation with PLATFORM(IOS)
     8        since this logic is specific to the iOS port.
     9
    1102015-07-21  Simon Fraser  <simon.fraser@apple.com>
    211
  • trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp

    r187129 r187136  
    929929void WebProcessProxy::reinstateNetworkProcessAssertionState(NetworkProcessProxy& newNetworkProcessProxy)
    930930{
     931#if PLATFORM(IOS)
    931932    ASSERT(!m_backgroundTokenForNetworkProcess || !m_foregroundTokenForNetworkProcess);
    932933
     
    936937    else if (m_foregroundTokenForNetworkProcess)
    937938        m_foregroundTokenForNetworkProcess = newNetworkProcessProxy.throttler().foregroundActivityToken();
     939#else
     940    UNUSED_PARAM(newNetworkProcessProxy);
     941#endif
    938942}
    939943#endif
Note: See TracChangeset for help on using the changeset viewer.