Title: [173526] trunk/Source/_javascript_Core
Revision
173526
Author
[email protected]
Date
2014-09-11 12:20:17 -0700 (Thu, 11 Sep 2014)

Log Message

Unreviewed rebaseline of inspector generator test results after r173120.

* inspector/scripts/tests/expected/commands-with-async-attribute.json-result:
* inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result:
* inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result:
* inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (173525 => 173526)


--- trunk/Source/_javascript_Core/ChangeLog	2014-09-11 19:12:48 UTC (rev 173525)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-09-11 19:20:17 UTC (rev 173526)
@@ -1,3 +1,12 @@
+2014-09-11  Joseph Pecoraro  <[email protected]>
+
+        Unreviewed rebaseline of inspector generator test results after r173120.
+
+        * inspector/scripts/tests/expected/commands-with-async-attribute.json-result:
+        * inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result:
+        * inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result:
+        * inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result:
+
 2014-09-11  Oliver Hunt  <[email protected]>
 
         Rename activation to be more in line with spec language

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result (173525 => 173526)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result	2014-09-11 19:12:48 UTC (rev 173525)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result	2014-09-11 19:20:17 UTC (rev 173526)
@@ -206,7 +206,7 @@
     else if (method == "executeSQLAsync")
         executeSQLAsync(callId, *message.get());
     else
-        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Database" + '.' + method + "' was not found");
+        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Database", '.', method, "' was not found"));
 }
 
 void InspectorDatabaseBackendDispatcher::executeSQLSyncOptionalReturnValues(long callId, const InspectorObject& message)

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result (173525 => 173526)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result	2014-09-11 19:12:48 UTC (rev 173525)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result	2014-09-11 19:20:17 UTC (rev 173526)
@@ -185,7 +185,7 @@
     else if (method == "executeNoOptionalParameters")
         executeNoOptionalParameters(callId, *message.get());
     else
-        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Database" + '.' + method + "' was not found");
+        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Database", '.', method, "' was not found"));
 }
 
 void InspectorDatabaseBackendDispatcher::executeAllOptionalParameters(long callId, const InspectorObject& message)

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result (173525 => 173526)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result	2014-09-11 19:12:48 UTC (rev 173525)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result	2014-09-11 19:20:17 UTC (rev 173526)
@@ -206,7 +206,7 @@
     if (method == "loadResource1")
         loadResource1(callId, *message.get());
     else
-        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Network1" + '.' + method + "' was not found");
+        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Network1", '.', method, "' was not found"));
 }
 
 void InspectorNetwork1BackendDispatcher::loadResource1(long callId, const InspectorObject&)
@@ -257,7 +257,7 @@
 
     HashMap<String, CallHandler>::iterator it = dispatchMap.find(method);
     if (it == dispatchMap.end()) {
-        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Network3" + '.' + method + "' was not found");
+        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Network3", '.', method, "' was not found"));
         return;
     }
 

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result (173525 => 173526)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result	2014-09-11 19:12:48 UTC (rev 173525)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result	2014-09-11 19:20:17 UTC (rev 173526)
@@ -177,7 +177,7 @@
     if (method == "loadResource")
         loadResource(callId, *message.get());
     else
-        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Network1" + '.' + method + "' was not found");
+        m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Network1", '.', method, "' was not found"));
 }
 
 void InspectorNetwork1BackendDispatcher::loadResource(long callId, const InspectorObject&)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to