Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (197656 => 197657)
--- trunk/Source/_javascript_Core/ChangeLog 2016-03-07 03:36:53 UTC (rev 197656)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-03-07 03:37:09 UTC (rev 197657)
@@ -1,3 +1,13 @@
+2016-03-06 Brian Burg <[email protected]>
+
+ Unreviewed, rebaseline inspector protocol generator tests after r197563.
+
+ * 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/enum-values.json-result:
+ * inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result:
+
2016-03-06 Benjamin Poulain <[email protected]>
[JSC] Improve DFG's Int32 ArithMul if one operand is a constant
Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result (197656 => 197657)
--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result 2016-03-07 03:36:53 UTC (rev 197656)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result 2016-03-07 03:37:09 UTC (rev 197657)
@@ -843,10 +843,10 @@
class ObjCInspectorDatabaseBackendDispatcher final : public AlternateDatabaseBackendDispatcher {
public:
ObjCInspectorDatabaseBackendDispatcher(id<TestProtocolDatabaseDomainHandler> handler) { m_delegate = handler; }
- void executeSQLSyncOptionalReturnValues(long requestId, int in_databaseId, const String& in_query) override;
- void executeSQLAsyncOptionalReturnValues(long requestId, int in_databaseId, const String& in_query) override;
- void executeSQLSync(long requestId, int in_databaseId, const String& in_query) override;
- void executeSQLAsync(long requestId, int in_databaseId, const String& in_query) override;
+ virtual void executeSQLSyncOptionalReturnValues(long requestId, int in_databaseId, const String& in_query) override;
+ virtual void executeSQLAsyncOptionalReturnValues(long requestId, int in_databaseId, const String& in_query) override;
+ virtual void executeSQLSync(long requestId, int in_databaseId, const String& in_query) override;
+ virtual void executeSQLAsync(long requestId, int in_databaseId, const String& in_query) override;
private:
RetainPtr<id<TestProtocolDatabaseDomainHandler>> m_delegate;
};
Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result (197656 => 197657)
--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result 2016-03-07 03:36:53 UTC (rev 197656)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result 2016-03-07 03:37:09 UTC (rev 197657)
@@ -744,8 +744,8 @@
class ObjCInspectorDatabaseBackendDispatcher final : public AlternateDatabaseBackendDispatcher {
public:
ObjCInspectorDatabaseBackendDispatcher(id<TestProtocolDatabaseDomainHandler> handler) { m_delegate = handler; }
- void executeAllOptionalParameters(long requestId, const Inspector::InspectorArray* in_columnNames, const String* in_notes, const double* in_timestamp, const Inspector::InspectorObject* in_values, const Inspector::InspectorValue* in_payload, const int* in_databaseId, const Inspector::InspectorObject* in_sqlError, const String* in_screenColor, const Inspector::InspectorArray* in_alternateColors, const String* in_printColor) override;
- void executeNoOptionalParameters(long requestId, const Inspector::InspectorArray& in_columnNames, const String& in_notes, double in_timestamp, const Inspector::InspectorObject& in_values, Inspector::InspectorValue in_payload, int in_databaseId, const Inspector::InspectorObject& in_sqlError, const String& in_screenColor, const Inspector::InspectorArray& in_alternateColors, const String& in_printColor) override;
+ virtual void executeAllOptionalParameters(long requestId, const Inspector::InspectorArray* in_columnNames, const String* in_notes, const double* in_timestamp, const Inspector::InspectorObject* in_values, const Inspector::InspectorValue* in_payload, const int* in_databaseId, const Inspector::InspectorObject* in_sqlError, const String* in_screenColor, const Inspector::InspectorArray* in_alternateColors, const String* in_printColor) override;
+ virtual void executeNoOptionalParameters(long requestId, const Inspector::InspectorArray& in_columnNames, const String& in_notes, double in_timestamp, const Inspector::InspectorObject& in_values, Inspector::InspectorValue in_payload, int in_databaseId, const Inspector::InspectorObject& in_sqlError, const String& in_screenColor, const Inspector::InspectorArray& in_alternateColors, const String& in_printColor) override;
private:
RetainPtr<id<TestProtocolDatabaseDomainHandler>> m_delegate;
};
Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result (197656 => 197657)
--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result 2016-03-07 03:36:53 UTC (rev 197656)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result 2016-03-07 03:37:09 UTC (rev 197657)
@@ -765,7 +765,7 @@
class ObjCInspectorNetwork1BackendDispatcher final : public AlternateNetwork1BackendDispatcher {
public:
ObjCInspectorNetwork1BackendDispatcher(id<TestProtocolNetwork1DomainHandler> handler) { m_delegate = handler; }
- void loadResource1(long requestId) override;
+ virtual void loadResource1(long requestId) override;
private:
RetainPtr<id<TestProtocolNetwork1DomainHandler>> m_delegate;
};
@@ -775,13 +775,13 @@
class ObjCInspectorNetwork3BackendDispatcher final : public AlternateNetwork3BackendDispatcher {
public:
ObjCInspectorNetwork3BackendDispatcher(id<TestProtocolNetwork3DomainHandler> handler) { m_delegate = handler; }
- void loadResource1(long requestId) override;
- void loadResource2(long requestId) override;
- void loadResource3(long requestId) override;
- void loadResource4(long requestId) override;
- void loadResource5(long requestId) override;
- void loadResource6(long requestId) override;
- void loadResource7(long requestId) override;
+ virtual void loadResource1(long requestId) override;
+ virtual void loadResource2(long requestId) override;
+ virtual void loadResource3(long requestId) override;
+ virtual void loadResource4(long requestId) override;
+ virtual void loadResource5(long requestId) override;
+ virtual void loadResource6(long requestId) override;
+ virtual void loadResource7(long requestId) override;
private:
RetainPtr<id<TestProtocolNetwork3DomainHandler>> m_delegate;
};
Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/enum-values.json-result (197656 => 197657)
--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/enum-values.json-result 2016-03-07 03:36:53 UTC (rev 197656)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/enum-values.json-result 2016-03-07 03:37:09 UTC (rev 197657)
@@ -589,7 +589,7 @@
class ObjCInspectorCommandDomainBackendDispatcher final : public AlternateCommandDomainBackendDispatcher {
public:
ObjCInspectorCommandDomainBackendDispatcher(id<TestProtocolCommandDomainDomainHandler> handler) { m_delegate = handler; }
- void commandWithEnumReturnValue(long requestId) override;
+ virtual void commandWithEnumReturnValue(long requestId) override;
private:
RetainPtr<id<TestProtocolCommandDomainDomainHandler>> m_delegate;
};
Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result (197656 => 197657)
--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result 2016-03-07 03:36:53 UTC (rev 197656)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/generate-domains-with-feature-guards.json-result 2016-03-07 03:37:09 UTC (rev 197657)
@@ -632,7 +632,7 @@
class ObjCInspectorNetwork1BackendDispatcher final : public AlternateNetwork1BackendDispatcher {
public:
ObjCInspectorNetwork1BackendDispatcher(id<TestProtocolNetwork1DomainHandler> handler) { m_delegate = handler; }
- void loadResource(long requestId) override;
+ virtual void loadResource(long requestId) override;
private:
RetainPtr<id<TestProtocolNetwork1DomainHandler>> m_delegate;
};