<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[168576] trunk/Source/WebCore</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/168576">168576</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2014-05-10 00:30:12 -0700 (Sat, 10 May 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>[MediaStream] Rename NavigatorMediaStream as NavigatorUserMedia.
https://bugs.webkit.org/show_bug.cgi?id=132734

Patch by Praveen R Jadhav &lt;praveen.j@samsung.com&gt; on 2014-05-10
Reviewed by Eric Carlson.

Spec: http://www.w3.org/TR/mediacapture-streams/#navigatorusermedia

This patch replaces 'NavigatorMediaStream' with 'NavigatorUserMedia'
throughout the code to be consistent with W3C specifications.
Test cases remain the same as 'Navigator' implies 'NavigatorUserMedia'.

* CMakeLists.txt: Compiles NavigatorUserMedia.cpp
* DerivedSources.make: Compiles NavigatorUserMedia.idl
* Modules/mediastream/NavigatorMediaStream.cpp: Removed.
* Modules/mediastream/NavigatorMediaStream.h: Removed.
* Modules/mediastream/NavigatorMediaStream.idl: Removed.
* Modules/mediastream/NavigatorUserMedia.cpp: Added.
(WebCore::NavigatorUserMedia::NavigatorUserMedia):
(WebCore::NavigatorUserMedia::~NavigatorUserMedia):
(WebCore::NavigatorUserMedia::webkitGetUserMedia):
* Modules/mediastream/NavigatorUserMedia.h: Added.
* Modules/mediastream/NavigatorUserMedia.idl: Added.
* WebCore.xcodeproj/project.pbxproj:
* bindings/js/JSNavigatorCustom.cpp:
(WebCore::JSNavigator::webkitGetUserMedia): NavigatorUserMedia
class is used instead of NavigatorMediaStream.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreCMakeListstxt">trunk/Source/WebCore/CMakeLists.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreDerivedSourcesmake">trunk/Source/WebCore/DerivedSources.make</a></li>
<li><a href="#trunkSourceWebCoreWebCorexcodeprojprojectpbxproj">trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkSourceWebCorebindingsjsJSNavigatorCustomcpp">trunk/Source/WebCore/bindings/js/JSNavigatorCustom.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreModulesmediastreamNavigatorUserMediacpp">trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamNavigatorUserMediah">trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.h</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamNavigatorUserMediaidl">trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.idl</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamcpp">trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamh">trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.h</a></li>
<li><a href="#trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamidl">trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.idl</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreCMakeListstxt"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/CMakeLists.txt (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/CMakeLists.txt        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/CMakeLists.txt        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -213,7 +213,7 @@
</span><span class="cx">     Modules/mediastream/MediaTrackConstraint.idl
</span><span class="cx">     Modules/mediastream/MediaTrackConstraintSet.idl
</span><span class="cx">     Modules/mediastream/MediaTrackConstraints.idl
</span><del>-    Modules/mediastream/NavigatorMediaStream.idl
</del><ins>+    Modules/mediastream/NavigatorUserMedia.idl
</ins><span class="cx">     Modules/mediastream/NavigatorUserMediaError.idl
</span><span class="cx">     Modules/mediastream/NavigatorUserMediaErrorCallback.idl
</span><span class="cx">     Modules/mediastream/NavigatorUserMediaSuccessCallback.idl
</span><span class="lines">@@ -846,7 +846,7 @@
</span><span class="cx">     Modules/mediastream/MediaTrackConstraint.cpp
</span><span class="cx">     Modules/mediastream/MediaTrackConstraintSet.cpp
</span><span class="cx">     Modules/mediastream/MediaTrackConstraints.cpp
</span><del>-    Modules/mediastream/NavigatorMediaStream.cpp
</del><ins>+    Modules/mediastream/NavigatorUserMedia.cpp
</ins><span class="cx">     Modules/mediastream/NavigatorUserMediaError.cpp
</span><span class="cx">     Modules/mediastream/RTCDTMFSender.cpp
</span><span class="cx">     Modules/mediastream/RTCDTMFToneChangeEvent.cpp
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/ChangeLog        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -1,3 +1,32 @@
</span><ins>+2014-05-10  Praveen R Jadhav  &lt;praveen.j@samsung.com&gt;
+
+        [MediaStream] Rename NavigatorMediaStream as NavigatorUserMedia.
+        https://bugs.webkit.org/show_bug.cgi?id=132734
+
+        Reviewed by Eric Carlson.
+
+        Spec: http://www.w3.org/TR/mediacapture-streams/#navigatorusermedia
+
+        This patch replaces 'NavigatorMediaStream' with 'NavigatorUserMedia'
+        throughout the code to be consistent with W3C specifications.
+        Test cases remain the same as 'Navigator' implies 'NavigatorUserMedia'.
+
+        * CMakeLists.txt: Compiles NavigatorUserMedia.cpp
+        * DerivedSources.make: Compiles NavigatorUserMedia.idl
+        * Modules/mediastream/NavigatorMediaStream.cpp: Removed.
+        * Modules/mediastream/NavigatorMediaStream.h: Removed.
+        * Modules/mediastream/NavigatorMediaStream.idl: Removed.
+        * Modules/mediastream/NavigatorUserMedia.cpp: Added.
+        (WebCore::NavigatorUserMedia::NavigatorUserMedia):
+        (WebCore::NavigatorUserMedia::~NavigatorUserMedia):
+        (WebCore::NavigatorUserMedia::webkitGetUserMedia):
+        * Modules/mediastream/NavigatorUserMedia.h: Added.
+        * Modules/mediastream/NavigatorUserMedia.idl: Added.
+        * WebCore.xcodeproj/project.pbxproj:
+        * bindings/js/JSNavigatorCustom.cpp:
+        (WebCore::JSNavigator::webkitGetUserMedia): NavigatorUserMedia
+        class is used instead of NavigatorMediaStream.
+
</ins><span class="cx"> 2014-05-10  Zalan Bujtas  &lt;zalan@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Subpixel rendering: Empty rects should remain empty after integrally enclosing them.
</span></span></pre></div>
<a id="trunkSourceWebCoreDerivedSourcesmake"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/DerivedSources.make (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/DerivedSources.make        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/DerivedSources.make        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -121,7 +121,7 @@
</span><span class="cx">     $(WebCore)/Modules/mediastream/MediaTrackConstraint.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/MediaTrackConstraints.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/MediaTrackConstraintSet.idl \
</span><del>-    $(WebCore)/Modules/mediastream/NavigatorMediaStream.idl \
</del><ins>+    $(WebCore)/Modules/mediastream/NavigatorUserMedia.idl \
</ins><span class="cx">     $(WebCore)/Modules/mediastream/NavigatorUserMediaError.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/NavigatorUserMediaErrorCallback.idl \
</span><span class="cx">     $(WebCore)/Modules/mediastream/NavigatorUserMediaSuccessCallback.idl \
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamcpp"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.cpp (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.cpp        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.cpp        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -1,71 +0,0 @@
</span><del>-/*
- *  Copyright (C) 2000 Harri Porten (porten@kde.org)
- *  Copyright (c) 2000 Daniel Molkentin (molkentin@kde.org)
- *  Copyright (c) 2000 Stefan Schimanski (schimmi@kde.org)
- *  Copyright (C) 2003, 2004, 2005, 2006 Apple Inc.
- *  Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- *
- *  This library is free software; you can redistribute it and/or
- *  modify it under the terms of the GNU Lesser General Public
- *  License as published by the Free Software Foundation; either
- *  version 2 of the License, or (at your option) any later version.
- *
- *  This library is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- *  Lesser General Public License for more details.
- *
- *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include &quot;config.h&quot;
-#include &quot;NavigatorMediaStream.h&quot;
-
-#if ENABLE(MEDIA_STREAM)
-
-#include &quot;Dictionary.h&quot;
-#include &quot;Document.h&quot;
-#include &quot;ExceptionCode.h&quot;
-#include &quot;Frame.h&quot;
-#include &quot;Navigator.h&quot;
-#include &quot;NavigatorUserMediaErrorCallback.h&quot;
-#include &quot;NavigatorUserMediaSuccessCallback.h&quot;
-#include &quot;Page.h&quot;
-#include &quot;UserMediaController.h&quot;
-#include &quot;UserMediaRequest.h&quot;
-
-namespace WebCore {
-
-NavigatorMediaStream::NavigatorMediaStream()
-{
-}
-
-NavigatorMediaStream::~NavigatorMediaStream()
-{
-}
-
-void NavigatorMediaStream::webkitGetUserMedia(Navigator* navigator, const Dictionary&amp; options, PassRefPtr&lt;NavigatorUserMediaSuccessCallback&gt; successCallback, PassRefPtr&lt;NavigatorUserMediaErrorCallback&gt; errorCallback, ExceptionCode&amp; ec)
-{
-    if (!successCallback)
-        return;
-
-    UserMediaController* userMedia = UserMediaController::from(navigator-&gt;frame() ? navigator-&gt;frame()-&gt;page() : 0);
-    if (!userMedia) {
-        ec = NOT_SUPPORTED_ERR;
-        return;
-    }
-
-    RefPtr&lt;UserMediaRequest&gt; request = UserMediaRequest::create(navigator-&gt;frame()-&gt;document(), userMedia, options, successCallback, errorCallback, ec);
-    if (!request) {
-        ec = NOT_SUPPORTED_ERR;
-        return;
-    }
-
-    request-&gt;start();
-}
-
-} // namespace WebCore
-
-#endif // ENABLE(MEDIA_STREAM)
</del></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamh"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.h (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.h        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.h        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -1,50 +0,0 @@
</span><del>-/*
-    Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Library General Public
-    License as published by the Free Software Foundation; either
-    version 2 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Library General Public License for more details.
-
-    You should have received a copy of the GNU Library General Public License
-    along with this library; see the file COPYING.LIB.  If not, write to
-    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-    Boston, MA 02110-1301, USA.
-*/
-
-#ifndef NavigatorMediaStream_h
-#define NavigatorMediaStream_h
-
-#if ENABLE(MEDIA_STREAM)
-
-#include &lt;wtf/PassRefPtr.h&gt;
-#include &lt;wtf/text/WTFString.h&gt;
-
-namespace WebCore {
-
-class Dictionary;
-class Navigator;
-class NavigatorUserMediaErrorCallback;
-class NavigatorUserMediaSuccessCallback;
-
-typedef int ExceptionCode;
-
-class NavigatorMediaStream {
-public:
-    static void webkitGetUserMedia(Navigator*, const Dictionary&amp;, PassRefPtr&lt;NavigatorUserMediaSuccessCallback&gt;, PassRefPtr&lt;NavigatorUserMediaErrorCallback&gt;, ExceptionCode&amp;);
-
-private:
-    NavigatorMediaStream();
-    ~NavigatorMediaStream();
-};
-
-} // namespace WebCore
-
-#endif // ENABLE(MEDIA_STREAM)
-
-#endif // NavigatorMediaStream_h
</del></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamidl"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.idl (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.idl        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.idl        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -1,27 +0,0 @@
</span><del>-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-[
-    Conditional=MEDIA_STREAM,
-] partial interface Navigator {
-    [Custom, RaisesException] void webkitGetUserMedia(Dictionary options,
-                                                 NavigatorUserMediaSuccessCallback successCallback,
-                                                 optional NavigatorUserMediaErrorCallback errorCallback);
-};
-
</del></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamNavigatorUserMediacppfromrev168575trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamcpp"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.cpp (from rev 168575, trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.cpp) (0 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.cpp                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.cpp        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -0,0 +1,71 @@
</span><ins>+/*
+ *  Copyright (C) 2000 Harri Porten (porten@kde.org)
+ *  Copyright (c) 2000 Daniel Molkentin (molkentin@kde.org)
+ *  Copyright (c) 2000 Stefan Schimanski (schimmi@kde.org)
+ *  Copyright (C) 2003, 2004, 2005, 2006 Apple Inc.
+ *  Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
+ *
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Lesser General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 2 of the License, or (at your option) any later version.
+ *
+ *  This library is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ *  Lesser General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Lesser General Public
+ *  License along with this library; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include &quot;config.h&quot;
+#include &quot;NavigatorUserMedia.h&quot;
+
+#if ENABLE(MEDIA_STREAM)
+
+#include &quot;Dictionary.h&quot;
+#include &quot;Document.h&quot;
+#include &quot;ExceptionCode.h&quot;
+#include &quot;Frame.h&quot;
+#include &quot;Navigator.h&quot;
+#include &quot;NavigatorUserMediaErrorCallback.h&quot;
+#include &quot;NavigatorUserMediaSuccessCallback.h&quot;
+#include &quot;Page.h&quot;
+#include &quot;UserMediaController.h&quot;
+#include &quot;UserMediaRequest.h&quot;
+
+namespace WebCore {
+
+NavigatorUserMedia::NavigatorUserMedia()
+{
+}
+
+NavigatorUserMedia::~NavigatorUserMedia()
+{
+}
+
+void NavigatorUserMedia::webkitGetUserMedia(Navigator* navigator, const Dictionary&amp; options, PassRefPtr&lt;NavigatorUserMediaSuccessCallback&gt; successCallback, PassRefPtr&lt;NavigatorUserMediaErrorCallback&gt; errorCallback, ExceptionCode&amp; ec)
+{
+    if (!successCallback)
+        return;
+
+    UserMediaController* userMedia = UserMediaController::from(navigator-&gt;frame() ? navigator-&gt;frame()-&gt;page() : 0);
+    if (!userMedia) {
+        ec = NOT_SUPPORTED_ERR;
+        return;
+    }
+
+    RefPtr&lt;UserMediaRequest&gt; request = UserMediaRequest::create(navigator-&gt;frame()-&gt;document(), userMedia, options, successCallback, errorCallback, ec);
+    if (!request) {
+        ec = NOT_SUPPORTED_ERR;
+        return;
+    }
+
+    request-&gt;start();
+}
+
+} // namespace WebCore
+
+#endif // ENABLE(MEDIA_STREAM)
</ins></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamNavigatorUserMediahfromrev168575trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamh"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.h (from rev 168575, trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.h) (0 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.h                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.h        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -0,0 +1,50 @@
</span><ins>+/*
+    Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License as published by the Free Software Foundation; either
+    version 2 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+    Library General Public License for more details.
+
+    You should have received a copy of the GNU Library General Public License
+    along with this library; see the file COPYING.LIB.  If not, write to
+    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+    Boston, MA 02110-1301, USA.
+*/
+
+#ifndef NavigatorUserMedia_h
+#define NavigatorUserMedia_h
+
+#if ENABLE(MEDIA_STREAM)
+
+#include &lt;wtf/PassRefPtr.h&gt;
+#include &lt;wtf/text/WTFString.h&gt;
+
+namespace WebCore {
+
+class Dictionary;
+class Navigator;
+class NavigatorUserMediaErrorCallback;
+class NavigatorUserMediaSuccessCallback;
+
+typedef int ExceptionCode;
+
+class NavigatorUserMedia {
+public:
+    static void webkitGetUserMedia(Navigator*, const Dictionary&amp;, PassRefPtr&lt;NavigatorUserMediaSuccessCallback&gt;, PassRefPtr&lt;NavigatorUserMediaErrorCallback&gt;, ExceptionCode&amp;);
+
+private:
+    NavigatorUserMedia();
+    ~NavigatorUserMedia();
+};
+
+} // namespace WebCore
+
+#endif // ENABLE(MEDIA_STREAM)
+
+#endif // NavigatorUserMedia_h
</ins></span></pre></div>
<a id="trunkSourceWebCoreModulesmediastreamNavigatorUserMediaidlfromrev168575trunkSourceWebCoreModulesmediastreamNavigatorMediaStreamidl"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.idl (from rev 168575, trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.idl) (0 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.idl                                (rev 0)
+++ trunk/Source/WebCore/Modules/mediastream/NavigatorUserMedia.idl        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -0,0 +1,27 @@
</span><ins>+/*
+ * Copyright (C) 2012 Google Inc. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+[
+    Conditional=MEDIA_STREAM,
+] partial interface Navigator {
+    [Custom, RaisesException] void webkitGetUserMedia(Dictionary options,
+                                                 NavigatorUserMediaSuccessCallback successCallback,
+                                                 optional NavigatorUserMediaErrorCallback errorCallback);
+};
+
</ins></span></pre></div>
<a id="trunkSourceWebCoreWebCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -159,8 +159,8 @@
</span><span class="cx">                 073AB4B317F8BACA006E0D6F /* AllVideoCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 073AB4B017F8BACA006E0D6F /* AllVideoCapabilities.h */; };
</span><span class="cx">                 073AB4B717F92ECF006E0D6F /* JSCapabilityRange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 073AB4B517F92ECF006E0D6F /* JSCapabilityRange.cpp */; };
</span><span class="cx">                 073AB4B817F92ECF006E0D6F /* JSCapabilityRange.h in Headers */ = {isa = PBXBuildFile; fileRef = 073AB4B617F92ECF006E0D6F /* JSCapabilityRange.h */; };
</span><del>-                073BE34017D17E01002BD431 /* JSNavigatorMediaStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 073BE33E17D17E01002BD431 /* JSNavigatorMediaStream.cpp */; };
-                073BE34117D17E01002BD431 /* JSNavigatorMediaStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 073BE33F17D17E01002BD431 /* JSNavigatorMediaStream.h */; settings = {ATTRIBUTES = (Private, ); }; };
</del><ins>+                073BE34017D17E01002BD431 /* JSNavigatorUserMedia.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 073BE33E17D17E01002BD431 /* JSNavigatorUserMedia.cpp */; };
+                073BE34117D17E01002BD431 /* JSNavigatorUserMedia.h in Headers */ = {isa = PBXBuildFile; fileRef = 073BE33F17D17E01002BD431 /* JSNavigatorUserMedia.h */; settings = {ATTRIBUTES = (Private, ); }; };
</ins><span class="cx">                 073BE34817D17E7A002BD431 /* JSNavigatorUserMediaError.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 073BE34217D17E7A002BD431 /* JSNavigatorUserMediaError.cpp */; };
</span><span class="cx">                 073BE34917D17E7A002BD431 /* JSNavigatorUserMediaError.h in Headers */ = {isa = PBXBuildFile; fileRef = 073BE34317D17E7A002BD431 /* JSNavigatorUserMediaError.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 073BE34A17D17E7A002BD431 /* JSNavigatorUserMediaErrorCallback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 073BE34417D17E7A002BD431 /* JSNavigatorUserMediaErrorCallback.cpp */; };
</span><span class="lines">@@ -207,7 +207,7 @@
</span><span class="cx">                 078E090117D14CEE00420AA1 /* MediaStreamRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B5217CEC32700848E51 /* MediaStreamRegistry.cpp */; };
</span><span class="cx">                 078E090217D14CEE00420AA1 /* MediaStreamTrack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B5417CEC32700848E51 /* MediaStreamTrack.cpp */; };
</span><span class="cx">                 078E090317D14CEE00420AA1 /* MediaStreamTrackEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B5717CEC32700848E51 /* MediaStreamTrackEvent.cpp */; };
</span><del>-                078E090417D14CEE00420AA1 /* NavigatorMediaStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B5A17CEC32700848E51 /* NavigatorMediaStream.cpp */; };
</del><ins>+                078E090417D14CEE00420AA1 /* NavigatorUserMedia.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B5A17CEC32700848E51 /* NavigatorUserMedia.cpp */; };
</ins><span class="cx">                 078E090517D14CEE00420AA1 /* RTCDataChannel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B6317CEC32700848E51 /* RTCDataChannel.cpp */; };
</span><span class="cx">                 078E090617D14CEE00420AA1 /* RTCDataChannelEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B6617CEC32700848E51 /* RTCDataChannelEvent.cpp */; };
</span><span class="cx">                 078E090717D14CEE00420AA1 /* RTCDTMFSender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07221B6917CEC32700848E51 /* RTCDTMFSender.cpp */; };
</span><span class="lines">@@ -229,7 +229,7 @@
</span><span class="cx">                 078E091717D14D1C00420AA1 /* MediaStreamRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B5317CEC32700848E51 /* MediaStreamRegistry.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 078E091817D14D1C00420AA1 /* MediaStreamTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B5517CEC32700848E51 /* MediaStreamTrack.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 078E091917D14D1C00420AA1 /* MediaStreamTrackEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B5817CEC32700848E51 /* MediaStreamTrackEvent.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><del>-                078E091A17D14D1C00420AA1 /* NavigatorMediaStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B5B17CEC32700848E51 /* NavigatorMediaStream.h */; settings = {ATTRIBUTES = (Private, ); }; };
</del><ins>+                078E091A17D14D1C00420AA1 /* NavigatorUserMedia.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B5B17CEC32700848E51 /* NavigatorUserMedia.h */; settings = {ATTRIBUTES = (Private, ); }; };
</ins><span class="cx">                 078E091B17D14D1C00420AA1 /* NavigatorUserMediaError.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B5D17CEC32700848E51 /* NavigatorUserMediaError.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 078E091C17D14D1C00420AA1 /* NavigatorUserMediaErrorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B5F17CEC32700848E51 /* NavigatorUserMediaErrorCallback.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 078E091D17D14D1C00420AA1 /* NavigatorUserMediaSuccessCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 07221B6117CEC32700848E51 /* NavigatorUserMediaSuccessCallback.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="lines">@@ -6953,9 +6953,9 @@
</span><span class="cx">                 07221B5717CEC32700848E51 /* MediaStreamTrackEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MediaStreamTrackEvent.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B5817CEC32700848E51 /* MediaStreamTrackEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaStreamTrackEvent.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B5917CEC32700848E51 /* MediaStreamTrackEvent.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MediaStreamTrackEvent.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                07221B5A17CEC32700848E51 /* NavigatorMediaStream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorMediaStream.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
-                07221B5B17CEC32700848E51 /* NavigatorMediaStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorMediaStream.h; sourceTree = &quot;&lt;group&gt;&quot;; };
-                07221B5C17CEC32700848E51 /* NavigatorMediaStream.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorMediaStream.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><ins>+                07221B5A17CEC32700848E51 /* NavigatorUserMedia.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NavigatorUserMedia.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
+                07221B5B17CEC32700848E51 /* NavigatorUserMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorUserMedia.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+                07221B5C17CEC32700848E51 /* NavigatorUserMedia.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorUserMedia.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 07221B5D17CEC32700848E51 /* NavigatorUserMediaError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorUserMediaError.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B5E17CEC32700848E51 /* NavigatorUserMediaError.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NavigatorUserMediaError.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 07221B5F17CEC32700848E51 /* NavigatorUserMediaErrorCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NavigatorUserMediaErrorCallback.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -7058,8 +7058,8 @@
</span><span class="cx">                 073AB4B017F8BACA006E0D6F /* AllVideoCapabilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AllVideoCapabilities.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 073AB4B517F92ECF006E0D6F /* JSCapabilityRange.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSCapabilityRange.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 073AB4B617F92ECF006E0D6F /* JSCapabilityRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSCapabilityRange.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                073BE33E17D17E01002BD431 /* JSNavigatorMediaStream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSNavigatorMediaStream.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
-                073BE33F17D17E01002BD431 /* JSNavigatorMediaStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSNavigatorMediaStream.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><ins>+                073BE33E17D17E01002BD431 /* JSNavigatorUserMedia.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSNavigatorUserMedia.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
+                073BE33F17D17E01002BD431 /* JSNavigatorUserMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSNavigatorUserMedia.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 073BE34217D17E7A002BD431 /* JSNavigatorUserMediaError.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSNavigatorUserMediaError.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 073BE34317D17E7A002BD431 /* JSNavigatorUserMediaError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSNavigatorUserMediaError.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 073BE34417D17E7A002BD431 /* JSNavigatorUserMediaErrorCallback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSNavigatorUserMediaErrorCallback.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -14194,9 +14194,9 @@
</span><span class="cx">                                 0705853717FE044F005F2BCB /* MediaTrackConstraintSet.cpp */,
</span><span class="cx">                                 0705852617FDE02B005F2BCB /* MediaTrackConstraintSet.h */,
</span><span class="cx">                                 0705852717FDE02B005F2BCB /* MediaTrackConstraintSet.idl */,
</span><del>-                                07221B5A17CEC32700848E51 /* NavigatorMediaStream.cpp */,
-                                07221B5B17CEC32700848E51 /* NavigatorMediaStream.h */,
-                                07221B5C17CEC32700848E51 /* NavigatorMediaStream.idl */,
</del><ins>+                                07221B5A17CEC32700848E51 /* NavigatorUserMedia.cpp */,
+                                07221B5B17CEC32700848E51 /* NavigatorUserMedia.h */,
+                                07221B5C17CEC32700848E51 /* NavigatorUserMedia.idl */,
</ins><span class="cx">                                 070327F717EA4AAF00CE1318 /* NavigatorUserMediaError.cpp */,
</span><span class="cx">                                 07221B5D17CEC32700848E51 /* NavigatorUserMediaError.h */,
</span><span class="cx">                                 07221B5E17CEC32700848E51 /* NavigatorUserMediaError.idl */,
</span><span class="lines">@@ -14380,8 +14380,8 @@
</span><span class="cx">                                 0705852E17FDE6D9005F2BCB /* JSMediaTrackConstraints.h */,
</span><span class="cx">                                 0705852F17FDE6D9005F2BCB /* JSMediaTrackConstraintSet.cpp */,
</span><span class="cx">                                 0705853017FDE6D9005F2BCB /* JSMediaTrackConstraintSet.h */,
</span><del>-                                073BE33E17D17E01002BD431 /* JSNavigatorMediaStream.cpp */,
-                                073BE33F17D17E01002BD431 /* JSNavigatorMediaStream.h */,
</del><ins>+                                073BE33E17D17E01002BD431 /* JSNavigatorUserMedia.cpp */,
+                                073BE33F17D17E01002BD431 /* JSNavigatorUserMedia.h */,
</ins><span class="cx">                                 073BE34217D17E7A002BD431 /* JSNavigatorUserMediaError.cpp */,
</span><span class="cx">                                 073BE34317D17E7A002BD431 /* JSNavigatorUserMediaError.h */,
</span><span class="cx">                                 073BE34417D17E7A002BD431 /* JSNavigatorUserMediaErrorCallback.cpp */,
</span><span class="lines">@@ -24574,7 +24574,7 @@
</span><span class="cx">                                 C6F08FCA1431000D00685849 /* JSMutationRecord.h in Headers */,
</span><span class="cx">                                 BCD9C2C10C17B69E005C90A2 /* JSNamedNodeMap.h in Headers */,
</span><span class="cx">                                 A9D247F80D757E3400FDF959 /* JSNavigator.h in Headers */,
</span><del>-                                073BE34117D17E01002BD431 /* JSNavigatorMediaStream.h in Headers */,
</del><ins>+                                073BE34117D17E01002BD431 /* JSNavigatorUserMedia.h in Headers */,
</ins><span class="cx">                                 073BE34917D17E7A002BD431 /* JSNavigatorUserMediaError.h in Headers */,
</span><span class="cx">                                 073BE34B17D17E7A002BD431 /* JSNavigatorUserMediaErrorCallback.h in Headers */,
</span><span class="cx">                                 073BE34D17D17E7A002BD431 /* JSNavigatorUserMediaSuccessCallback.h in Headers */,
</span><span class="lines">@@ -28047,7 +28047,7 @@
</span><span class="cx">                                 BCD9C2C00C17B69E005C90A2 /* JSNamedNodeMap.cpp in Sources */,
</span><span class="cx">                                 BCD9C2630C17AA67005C90A2 /* JSNamedNodeMapCustom.cpp in Sources */,
</span><span class="cx">                                 A9D247F70D757E3400FDF959 /* JSNavigator.cpp in Sources */,
</span><del>-                                073BE34017D17E01002BD431 /* JSNavigatorMediaStream.cpp in Sources */,
</del><ins>+                                073BE34017D17E01002BD431 /* JSNavigatorUserMedia.cpp in Sources */,
</ins><span class="cx">                                 073BE34817D17E7A002BD431 /* JSNavigatorUserMediaError.cpp in Sources */,
</span><span class="cx">                                 073BE34A17D17E7A002BD431 /* JSNavigatorUserMediaErrorCallback.cpp in Sources */,
</span><span class="cx">                                 073BE34C17D17E7A002BD431 /* JSNavigatorUserMediaSuccessCallback.cpp in Sources */,
</span><span class="lines">@@ -28555,7 +28555,7 @@
</span><span class="cx">                                 A9C6E5A50D746458006442E9 /* Navigator.cpp in Sources */,
</span><span class="cx">                                 E12719CA0EEEC21300F61213 /* NavigatorBase.cpp in Sources */,
</span><span class="cx">                                 9711460314EF009A00674FD9 /* NavigatorGeolocation.cpp in Sources */,
</span><del>-                                078E090417D14CEE00420AA1 /* NavigatorMediaStream.cpp in Sources */,
</del><ins>+                                078E090417D14CEE00420AA1 /* NavigatorUserMedia.cpp in Sources */,
</ins><span class="cx">                                 070327F817EA4AAF00CE1318 /* NavigatorUserMediaError.cpp in Sources */,
</span><span class="cx">                                 5D874F130D161D3200796C3B /* NetscapePlugInStreamLoader.cpp in Sources */,
</span><span class="cx">                                 59C27F05138D28C10079B7E2 /* NetworkResourcesData.cpp in Sources */,
</span></span></pre></div>
<a id="trunkSourceWebCorebindingsjsJSNavigatorCustomcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/bindings/js/JSNavigatorCustom.cpp (168575 => 168576)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/bindings/js/JSNavigatorCustom.cpp        2014-05-10 07:23:01 UTC (rev 168575)
+++ trunk/Source/WebCore/bindings/js/JSNavigatorCustom.cpp        2014-05-10 07:30:12 UTC (rev 168576)
</span><span class="lines">@@ -32,7 +32,7 @@
</span><span class="cx"> #include &quot;ExceptionCode.h&quot;
</span><span class="cx"> #include &quot;JSNavigatorUserMediaErrorCallback.h&quot;
</span><span class="cx"> #include &quot;JSNavigatorUserMediaSuccessCallback.h&quot;
</span><del>-#include &quot;NavigatorMediaStream.h&quot;
</del><ins>+#include &quot;NavigatorUserMedia.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> using namespace JSC;
</span><span class="cx"> 
</span><span class="lines">@@ -72,7 +72,7 @@
</span><span class="cx">     RefPtr&lt;NavigatorUserMediaSuccessCallback&gt; successCallback = JSNavigatorUserMediaSuccessCallback::create(asObject(exec-&gt;uncheckedArgument(1)), castedThis-&gt;globalObject());
</span><span class="cx">     Navigator&amp; impl = castedThis-&gt;impl();
</span><span class="cx">     ExceptionCode ec = 0;
</span><del>-    NavigatorMediaStream::webkitGetUserMedia(&amp;impl, options, successCallback, errorCallback, ec);
</del><ins>+    NavigatorUserMedia::webkitGetUserMedia(&amp;impl, options, successCallback, errorCallback, ec);
</ins><span class="cx">     setDOMException(exec, ec);
</span><span class="cx">     return jsUndefined();
</span><span class="cx"> }
</span></span></pre>
</div>
</div>

</body>
</html>