Title: [188625] trunk/Source/WebKit2
Revision
188625
Author
commit-qu...@webkit.org
Date
2015-08-18 21:23:16 -0700 (Tue, 18 Aug 2015)

Log Message

[EFL] Web Inspector: make to use StringBuilder in inspectorBaseURL
https://bugs.webkit.org/show_bug.cgi?id=148126

Patch by Jincheol Jo <jincheol...@navercorp.com> on 2015-08-18
Reviewed by Gyuyoung Kim.

* UIProcess/efl/WebInspectorProxyEfl.cpp:
(WebKit::WebInspectorProxy::inspectorBaseURL):
(WebKit::WebInspectorProxy::platformInspectedWindowHeight):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (188624 => 188625)


--- trunk/Source/WebKit2/ChangeLog	2015-08-19 04:09:12 UTC (rev 188624)
+++ trunk/Source/WebKit2/ChangeLog	2015-08-19 04:23:16 UTC (rev 188625)
@@ -1,3 +1,14 @@
+2015-08-18  Jincheol Jo  <jincheol...@navercorp.com>
+
+        [EFL] Web Inspector: make to use StringBuilder in inspectorBaseURL
+        https://bugs.webkit.org/show_bug.cgi?id=148126
+
+        Reviewed by Gyuyoung Kim.
+
+        * UIProcess/efl/WebInspectorProxyEfl.cpp:
+        (WebKit::WebInspectorProxy::inspectorBaseURL):
+        (WebKit::WebInspectorProxy::platformInspectedWindowHeight):
+
 2015-08-18  Anders Carlsson  <ander...@apple.com>
 
         Fix build, and fix the version check.

Modified: trunk/Source/WebKit2/UIProcess/efl/WebInspectorProxyEfl.cpp (188624 => 188625)


--- trunk/Source/WebKit2/UIProcess/efl/WebInspectorProxyEfl.cpp	2015-08-19 04:09:12 UTC (rev 188624)
+++ trunk/Source/WebKit2/UIProcess/efl/WebInspectorProxyEfl.cpp	2015-08-19 04:23:16 UTC (rev 188625)
@@ -190,7 +190,10 @@
 
 String WebInspectorProxy::inspectorBaseURL() const
 {
-    return "file://" + WebCore::inspectorResourcePath();
+    StringBuilder builder;
+    builder.appendLiteral("file://");
+    builder.append(WebCore::inspectorResourcePath());
+    return builder.toString();
 }
 
 unsigned WebInspectorProxy::platformInspectedWindowHeight()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to