Fix a type mismatch on Windows caused by r201738.
[chromium-blink-merge.git] / cc / debug / traced_value.h
blobe5d63a1c1071d9bb611ef89511edcc20ff315785
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.
5 #ifndef CC_DEBUG_TRACED_VALUE_H_
6 #define CC_DEBUG_TRACED_VALUE_H_
8 #include <string>
10 #include "base/debug/trace_event.h"
11 #include "base/memory/scoped_ptr.h"
13 namespace base {
14 class DictionaryValue;
15 class Value;
17 namespace cc {
19 class TracedValue : public base::debug::ConvertableToTraceFormat {
20 public:
21 static scoped_ptr<base::Value> CreateIDRef(const void* id);
22 static void MakeDictIntoImplicitSnapshot(
23 base::DictionaryValue* dict, const char* object_name, const void* id);
24 static scoped_ptr<ConvertableToTraceFormat> FromValue(
25 base::Value* value);
27 virtual ~TracedValue();
29 virtual void AppendAsTraceFormat(std::string* out) const OVERRIDE;
31 private:
32 explicit TracedValue(base::Value* value);
34 scoped_ptr<base::Value> value_;
36 DISALLOW_COPY_AND_ASSIGN(TracedValue);
39 } // namespace cc
41 #endif // CC_DEBUG_TRACED_VALUE_H_