Title: [216482] trunk/Source/WebCore
Revision
216482
Author
commit-qu...@webkit.org
Date
2017-05-09 00:37:03 -0700 (Tue, 09 May 2017)

Log Message

[AppleWin] CaptureDeviceManager.cpp: error C2813: #import is not supported with /MP
https://bugs.webkit.org/show_bug.cgi?id=171849

Patch by Fujii Hironori <hironori.fu...@sony.com> on 2017-05-09
Reviewed by Per Arne Vollan.

* platform/mediastream/CaptureDeviceManager.cpp: Replaced #import with #include.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (216481 => 216482)


--- trunk/Source/WebCore/ChangeLog	2017-05-09 07:15:01 UTC (rev 216481)
+++ trunk/Source/WebCore/ChangeLog	2017-05-09 07:37:03 UTC (rev 216482)
@@ -1,3 +1,12 @@
+2017-05-09  Fujii Hironori  <hironori.fu...@sony.com>
+
+        [AppleWin] CaptureDeviceManager.cpp: error C2813: #import is not supported with /MP
+        https://bugs.webkit.org/show_bug.cgi?id=171849
+
+        Reviewed by Per Arne Vollan.
+
+        * platform/mediastream/CaptureDeviceManager.cpp: Replaced #import with #include.
+
 2017-05-08  Chris Dumez  <cdu...@apple.com>
 
         Refactor / Clean up DOMWindow.idl

Modified: trunk/Source/WebCore/platform/mediastream/CaptureDeviceManager.cpp (216481 => 216482)


--- trunk/Source/WebCore/platform/mediastream/CaptureDeviceManager.cpp	2017-05-09 07:15:01 UTC (rev 216481)
+++ trunk/Source/WebCore/platform/mediastream/CaptureDeviceManager.cpp	2017-05-09 07:37:03 UTC (rev 216482)
@@ -23,19 +23,19 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#import "config.h"
-#import "CaptureDeviceManager.h"
+#include "config.h"
+#include "CaptureDeviceManager.h"
 
 #if ENABLE(MEDIA_STREAM)
 
-#import "Logging.h"
-#import "MediaConstraints.h"
-#import "RealtimeMediaSource.h"
-#import "RealtimeMediaSourceCenter.h"
-#import "RealtimeMediaSourceSettings.h"
-#import <wtf/MainThread.h>
-#import <wtf/NeverDestroyed.h>
-#import <wtf/text/StringHash.h>
+#include "Logging.h"
+#include "MediaConstraints.h"
+#include "RealtimeMediaSource.h"
+#include "RealtimeMediaSourceCenter.h"
+#include "RealtimeMediaSourceSettings.h"
+#include <wtf/MainThread.h>
+#include <wtf/NeverDestroyed.h>
+#include <wtf/text/StringHash.h>
 
 using namespace WebCore;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to