Changeset 187136 in webkit
- Timestamp:
- Jul 21, 2015, 4:33:37 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebProcessProxy.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r187135 r187136 1 2015-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 1 10 2015-07-21 Simon Fraser <simon.fraser@apple.com> 2 11 -
trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp
r187129 r187136 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.