Changeset 187305 in webkit
- Timestamp:
- Jul 24, 2015, 12:03:46 AM (11 years ago)
- Location:
- branches/safari-601.1-branch/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebProcessProxy.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-601.1-branch/Source/WebKit2/ChangeLog
r187303 r187305 1 2015-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 1 14 2015-07-23 Lucas Forschler <lforschler@apple.com> 2 15 -
branches/safari-601.1-branch/Source/WebKit2/UIProcess/WebProcessProxy.cpp
r187303 r187305 929 929 void WebProcessProxy::reinstateNetworkProcessAssertionState(NetworkProcessProxy& newNetworkProcessProxy) 930 930 { 931 #if PLATFORM(IOS) 931 932 ASSERT(!m_backgroundTokenForNetworkProcess || !m_foregroundTokenForNetworkProcess); 932 933 … … 936 937 else if (m_foregroundTokenForNetworkProcess) 937 938 m_foregroundTokenForNetworkProcess = newNetworkProcessProxy.throttler().foregroundActivityToken(); 939 #else 940 UNUSED_PARAM(newNetworkProcessProxy); 941 #endif 938 942 } 939 943 #endif
Note:
See TracChangeset
for help on using the changeset viewer.