Title: [189578] trunk/Source/WebKit2
- Revision
- 189578
- Author
- [email protected]
- Date
- 2015-09-10 11:08:23 -0700 (Thu, 10 Sep 2015)
Log Message
Unreviewed build fix after r189572.
* UIProcess/WebInspectorProxy.cpp:
(WebKit::WebInspectorProxy::inspectorPageURL):
(WebKit::WebInspectorProxy::inspectorTestPageURL):
(WebKit::WebInspectorProxy::inspectorBaseURL):
Remove the const on the now static methods.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (189577 => 189578)
--- trunk/Source/WebKit2/ChangeLog 2015-09-10 18:04:58 UTC (rev 189577)
+++ trunk/Source/WebKit2/ChangeLog 2015-09-10 18:08:23 UTC (rev 189578)
@@ -1,3 +1,13 @@
+2015-09-10 Joseph Pecoraro <[email protected]>
+
+ Unreviewed build fix after r189572.
+
+ * UIProcess/WebInspectorProxy.cpp:
+ (WebKit::WebInspectorProxy::inspectorPageURL):
+ (WebKit::WebInspectorProxy::inspectorTestPageURL):
+ (WebKit::WebInspectorProxy::inspectorBaseURL):
+ Remove the const on the now static methods.
+
2015-09-10 Chris Dumez <[email protected]>
Node.appendChild(null) / replaceChild(null, null) / removeChild(null) / insertBefore(null, ref) should throw a TypeError
Modified: trunk/Source/WebKit2/UIProcess/WebInspectorProxy.cpp (189577 => 189578)
--- trunk/Source/WebKit2/UIProcess/WebInspectorProxy.cpp 2015-09-10 18:04:58 UTC (rev 189577)
+++ trunk/Source/WebKit2/UIProcess/WebInspectorProxy.cpp 2015-09-10 18:08:23 UTC (rev 189578)
@@ -705,19 +705,19 @@
notImplemented();
}
-String WebInspectorProxy::inspectorPageURL() const
+String WebInspectorProxy::inspectorPageURL()
{
notImplemented();
return String();
}
-String WebInspectorProxy::inspectorTestPageURL() const
+String WebInspectorProxy::inspectorTestPageURL()
{
notImplemented();
return String();
}
-String WebInspectorProxy::inspectorBaseURL() const
+String WebInspectorProxy::inspectorBaseURL()
{
notImplemented();
return String();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes