Title: [187029] trunk/Source/WebKit2
Revision
187029
Author
[email protected]
Date
2015-07-20 12:50:54 -0700 (Mon, 20 Jul 2015)

Log Message

Fix the !ENABLE(VIDEO) build after r186396
https://bugs.webkit.org/show_bug.cgi?id=147116

Reviewed by Brent Fulgham.

* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::didClose):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (187028 => 187029)


--- trunk/Source/WebKit2/ChangeLog	2015-07-20 19:04:19 UTC (rev 187028)
+++ trunk/Source/WebKit2/ChangeLog	2015-07-20 19:50:54 UTC (rev 187029)
@@ -1,3 +1,13 @@
+2015-07-20  Csaba Osztrogonác  <[email protected]>
+
+        Fix the !ENABLE(VIDEO) build after r186396
+        https://bugs.webkit.org/show_bug.cgi?id=147116
+
+        Reviewed by Brent Fulgham.
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::didClose):
+
 2015-07-20  Tomas Popela  <[email protected]>
 
         [GTK] Add selection-changed signal to the WebKit2 API

Modified: trunk/Source/WebKit2/WebProcess/WebProcess.cpp (187028 => 187029)


--- trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2015-07-20 19:04:19 UTC (rev 187028)
+++ trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2015-07-20 19:50:54 UTC (rev 187029)
@@ -657,10 +657,12 @@
     GCController::singleton().garbageCollectSoon();
     FontCache::singleton().invalidate();
     MemoryCache::singleton().setDisabled(true);
-#endif    
+#endif
 
+#if ENABLE(VIDEO)
     // FIXME(146657): This explicit media stop command should not be necessary
     PlatformMediaSessionManager::sharedManager().stopAllMediaPlaybackForProcess();
+#endif
 
     // The UI process closed this connection, shut down.
     stopRunLoop();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to