diff options
Diffstat (limited to 'base/debug/trace_event_impl.h')
-rw-r--r-- | base/debug/trace_event_impl.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/base/debug/trace_event_impl.h b/base/debug/trace_event_impl.h index 146ca8f..7b191b8 100644 --- a/base/debug/trace_event_impl.h +++ b/base/debug/trace_event_impl.h @@ -64,8 +64,7 @@ namespace debug { // For any argument of type TRACE_VALUE_TYPE_CONVERTABLE the provided // class must implement this interface. -class BASE_EXPORT ConvertableToTraceFormat - : public RefCounted<ConvertableToTraceFormat> { +class ConvertableToTraceFormat : public RefCounted<ConvertableToTraceFormat> { public: // Append the class info to the provided |out| string. The appended // data must be a valid JSON object. Strings must be properly quoted, and @@ -73,12 +72,6 @@ class BASE_EXPORT ConvertableToTraceFormat // appended. virtual void AppendAsTraceFormat(std::string* out) const = 0; - std::string ToString() const { - std::string result; - AppendAsTraceFormat(&result); - return result; - } - protected: virtual ~ConvertableToTraceFormat() {} |