Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: base/traced_object.h

Issue 19642005: Make TracedValue lower overhead. Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed lint errors. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« base/trace_event_value_unittest.cc ('K') | « base/trace_event_value_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698