OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef BASE_TRACED_OBJECT_H_ | |
6 #define BASE_TRACED_OBJECT_H_ | |
7 | |
8 #include "base/trace_event_value.h" | |
9 | |
10 namespace base { | |
11 | |
12 class TracedValue; | |
13 | |
14 class BASE_EXPORT TracedObject { | |
15 public: | |
16 virtual ~TracedObject() {} | |
rterrazas
2013/07/21 22:23:49
This is the interface I mentioned, implementing th
dsinclair
2013/07/23 14:56:29
As above, I don't think this is needed. Is there a
| |
17 virtual void PushInto(base::TracedValue* traced_value) const {} | |
18 }; | |
19 | |
20 } // namespace base | |
21 | |
22 #endif // BASE_TRACED_OBJECT_H_ | |
23 | |
OLD | NEW |