Changeset 173526 in webkit
- Timestamp:
- Sep 11, 2014, 12:20:17 PM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
inspector/scripts/tests/expected/commands-with-async-attribute.json-result (modified) (1 diff)
-
inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result (modified) (1 diff)
-
inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result (modified) (2 diffs)
-
inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r173517 r173526 1 2014-09-11 Joseph Pecoraro <pecoraro@apple.com> 2 3 Unreviewed rebaseline of inspector generator test results after r173120. 4 5 * inspector/scripts/tests/expected/commands-with-async-attribute.json-result: 6 * inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result: 7 * inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result: 8 * inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result: 9 1 10 2014-09-11 Oliver Hunt <oliver@apple.com> 2 11 -
trunk/Source/JavaScriptCore/inspector/scripts/tests/expected/commands-with-async-attribute.json-result
r172980 r173526 207 207 executeSQLAsync(callId, *message.get()); 208 208 else 209 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Database" + '.' + method + "' was not found");209 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Database", '.', method, "' was not found")); 210 210 } 211 211 -
trunk/Source/JavaScriptCore/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result
r172980 r173526 186 186 executeNoOptionalParameters(callId, *message.get()); 187 187 else 188 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Database" + '.' + method + "' was not found");188 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Database", '.', method, "' was not found")); 189 189 } 190 190 -
trunk/Source/JavaScriptCore/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result
r172930 r173526 207 207 loadResource1(callId, *message.get()); 208 208 else 209 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Network1" + '.' + method + "' was not found");209 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Network1", '.', method, "' was not found")); 210 210 } 211 211 … … 258 258 HashMap<String, CallHandler>::iterator it = dispatchMap.find(method); 259 259 if (it == dispatchMap.end()) { 260 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Network3" + '.' + method + "' was not found");260 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Network3", '.', method, "' was not found")); 261 261 return; 262 262 } -
trunk/Source/JavaScriptCore/inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result
r172980 r173526 178 178 loadResource(callId, *message.get()); 179 179 else 180 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, String("'") + "Network1" + '.' + method + "' was not found");180 m_backendDispatcher->reportProtocolError(&callId, InspectorBackendDispatcher::MethodNotFound, makeString('\'', "Network1", '.', method, "' was not found")); 181 181 } 182 182
Note:
See TracChangeset
for help on using the changeset viewer.