Index: Source/platform/TestingPlatformSupport.cpp |
diff --git a/Source/platform/TestingPlatformSupport.cpp b/Source/platform/TestingPlatformSupport.cpp |
index 435e04796f595dc71559855a82271f5296862ee7..366766bd7aed8a1e9b88dcceea1155fb503c4f4c 100644 |
--- a/Source/platform/TestingPlatformSupport.cpp |
+++ b/Source/platform/TestingPlatformSupport.cpp |
@@ -84,4 +84,10 @@ void TestingPlatformSupport::cryptographicallyRandomValues(unsigned char* buffer |
{ |
} |
+const unsigned char* TestingPlatformSupport::getTraceCategoryEnabledFlag(const char* categoryName) |
+{ |
+ static const unsigned char tracingIsDisabled = 0; |
+ return &tracingIsDisabled; |
+} |
+ |
} // namespace WebCore |