Index: third_party/WebKit/Source/core/testing/UnionTypesTest.cpp |
diff --git a/third_party/WebKit/Source/core/testing/UnionTypesTest.cpp b/third_party/WebKit/Source/core/testing/UnionTypesTest.cpp |
index 3e134f78931103f0b586b1a33ea28b118603cc85..af4e52a609d374e0b23a839aadf7b36ca9042d36 100644 |
--- a/third_party/WebKit/Source/core/testing/UnionTypesTest.cpp |
+++ b/third_party/WebKit/Source/core/testing/UnionTypesTest.cpp |
@@ -159,4 +159,13 @@ String UnionTypesTest::doubleOrStringOrStringSequenceArg(const DoubleOrStringOrS |
return builder.substring(0, builder.length() - 2) + "]"; |
} |
+String UnionTypesTest::internalDictionaryOrStringSequenceArg(const InternalDictionaryOrStringSequence& argument) |
+{ |
+ if (argument.isInternalDictionary()) |
+ return "InternalDictionary"; |
+ if (argument.isStringSequence()) |
+ return "sequence<DOMString>"; |
+ return ""; |
+} |
+ |
} // namespace blink |