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

Changeset 187305 in webkit


Ignore:
Timestamp:
Jul 24, 2015, 12:03:46 AM (11 years ago)
Author:
Lucas Forschler
Message:

Merged r187136. rdar://problem/18477459

Location:
branches/safari-601.1-branch/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-601.1-branch/Source/WebKit2/ChangeLog

    r187303 r187305  
     12015-07-24  Lucas Forschler  <lforschler@apple.com>
     2
     3        Merge r187136
     4
     5    2015-07-21  Daniel Bates  <dabates@apple.com>
     6
     7            Fix the build following <https://trac.webkit.org/changeset/187129>
     8            (https://bugs.webkit.org/show_bug.cgi?id=147112)
     9
     10            * UIProcess/WebProcessProxy.cpp:
     11            (WebKit::WebProcessProxy::reinstateNetworkProcessAssertionState): Guard implementation with PLATFORM(IOS)
     12            since this logic is specific to the iOS port.
     13
    1142015-07-23  Lucas Forschler  <lforschler@apple.com>
    215
  • branches/safari-601.1-branch/Source/WebKit2/UIProcess/WebProcessProxy.cpp

    r187303 r187305  
    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.