summaryrefslogtreecommitdiffstats
path: root/cc/debug/traced_picture.cc
blob: 3241871d8ee01bc1e8b8485947fdd095e201ec5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/debug/traced_picture.h"

#include "base/json/json_writer.h"
#include "base/strings/stringprintf.h"
#include "base/values.h"

namespace cc {

TracedPicture::TracedPicture(scoped_refptr<const Picture> picture)
    : picture_(picture), is_alias_(false) {}

TracedPicture::~TracedPicture() {
}

scoped_refptr<base::trace_event::ConvertableToTraceFormat>
TracedPicture::AsTraceablePicture(const Picture* picture) {
  return scoped_refptr<base::trace_event::ConvertableToTraceFormat>(
      new TracedPicture(picture));
}

scoped_refptr<base::trace_event::ConvertableToTraceFormat>
TracedPicture::AsTraceablePictureAlias(const Picture* original) {
  scoped_refptr<TracedPicture> ptr = new TracedPicture(original);
  ptr->is_alias_ = true;
  return scoped_refptr<base::trace_event::ConvertableToTraceFormat>(ptr);
}

void TracedPicture::AppendAsTraceFormat(std::string* out) const {
  if (is_alias_)
    AppendPictureAlias(out);
  else
    AppendPicture(out);
}

void TracedPicture::AppendPictureAlias(std::string* out) const {
  scoped_ptr<base::DictionaryValue> alias(new base::DictionaryValue());
  alias->SetString("id_ref", base::StringPrintf("%p", picture_.get()));

  base::DictionaryValue res;
  res.Set("alias", alias.release());
  std::string tmp;
  base::JSONWriter::Write(res, &tmp);
  out->append(tmp);
}

void TracedPicture::AppendPicture(std::string* out) const {
  std::string tmp;
  base::JSONWriter::Write(*picture_->AsValue(), &tmp);
  out->append(tmp);
}

}  // namespace cc