Title: [196985] trunk/Source/_javascript_Core
Revision
196985
Author
[email protected]
Date
2016-02-23 11:38:33 -0800 (Tue, 23 Feb 2016)

Log Message

ASan build fix.

Let's not export a template function that is only used in InspectorBackendDispatcher.cpp.

* inspector/InspectorBackendDispatcher.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (196984 => 196985)


--- trunk/Source/_javascript_Core/ChangeLog	2016-02-23 19:13:18 UTC (rev 196984)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-02-23 19:38:33 UTC (rev 196985)
@@ -1,3 +1,11 @@
+2016-02-23  Alexey Proskuryakov  <[email protected]>
+
+        ASan build fix.
+
+        Let's not export a template function that is only used in InspectorBackendDispatcher.cpp.
+
+        * inspector/InspectorBackendDispatcher.h:
+
 2016-02-23  Brian Burg  <[email protected]>
 
         Connect WebAutomationSession to its backend dispatcher as if it were an agent and add stub implementations

Modified: trunk/Source/_javascript_Core/inspector/InspectorBackendDispatcher.h (196984 => 196985)


--- trunk/Source/_javascript_Core/inspector/InspectorBackendDispatcher.h	2016-02-23 19:13:18 UTC (rev 196984)
+++ trunk/Source/_javascript_Core/inspector/InspectorBackendDispatcher.h	2016-02-23 19:38:33 UTC (rev 196985)
@@ -91,6 +91,7 @@
     void reportProtocolError(Optional<long> relatedRequestId, CommonErrorCode, const String& errorMessage);
 
     template<typename T>
+    WTF_HIDDEN_DECLARATION
     T getPropertyValue(InspectorObject*, const String& name, bool* out_optionalValueFound, T defaultValue, std::function<bool(InspectorValue&, T&)>, const char* typeName);
 
     int getInteger(InspectorObject*, const String& name, bool* valueFound);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to