| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/debug/traced_picture.h" | 5 #include "cc/debug/traced_picture.h" |
| 6 | 6 |
| 7 #include "base/json/json_writer.h" | 7 #include "base/json/json_writer.h" |
| 8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 | 10 |
| 11 namespace cc { | 11 namespace cc { |
| 12 | 12 |
| 13 TracedPicture::TracedPicture(scoped_refptr<const Picture> picture) | 13 TracedPicture::TracedPicture(scoped_refptr<const Picture> picture) |
| 14 : picture_(picture), is_alias_(false) {} | 14 : picture_(picture), is_alias_(false) {} |
| 15 | 15 |
| 16 TracedPicture::~TracedPicture() { | 16 TracedPicture::~TracedPicture() { |
| 17 } | 17 } |
| 18 | 18 |
| 19 scoped_refptr<base::debug::ConvertableToTraceFormat> | 19 scoped_refptr<base::trace_event::ConvertableToTraceFormat> |
| 20 TracedPicture::AsTraceablePicture(const Picture* picture) { | 20 TracedPicture::AsTraceablePicture(const Picture* picture) { |
| 21 return scoped_refptr<base::debug::ConvertableToTraceFormat>( | 21 return scoped_refptr<base::trace_event::ConvertableToTraceFormat>( |
| 22 new TracedPicture(picture)); | 22 new TracedPicture(picture)); |
| 23 } | 23 } |
| 24 | 24 |
| 25 scoped_refptr<base::debug::ConvertableToTraceFormat> | 25 scoped_refptr<base::trace_event::ConvertableToTraceFormat> |
| 26 TracedPicture::AsTraceablePictureAlias(const Picture* original) { | 26 TracedPicture::AsTraceablePictureAlias(const Picture* original) { |
| 27 scoped_refptr<TracedPicture> ptr = new TracedPicture(original); | 27 scoped_refptr<TracedPicture> ptr = new TracedPicture(original); |
| 28 ptr->is_alias_ = true; | 28 ptr->is_alias_ = true; |
| 29 return scoped_refptr<base::debug::ConvertableToTraceFormat>(ptr); | 29 return scoped_refptr<base::trace_event::ConvertableToTraceFormat>(ptr); |
| 30 } | 30 } |
| 31 | 31 |
| 32 void TracedPicture::AppendAsTraceFormat(std::string* out) const { | 32 void TracedPicture::AppendAsTraceFormat(std::string* out) const { |
| 33 if (is_alias_) | 33 if (is_alias_) |
| 34 AppendPictureAlias(out); | 34 AppendPictureAlias(out); |
| 35 else | 35 else |
| 36 AppendPicture(out); | 36 AppendPicture(out); |
| 37 } | 37 } |
| 38 | 38 |
| 39 void TracedPicture::AppendPictureAlias(std::string* out) const { | 39 void TracedPicture::AppendPictureAlias(std::string* out) const { |
| 40 scoped_ptr<base::DictionaryValue> alias(new base::DictionaryValue()); | 40 scoped_ptr<base::DictionaryValue> alias(new base::DictionaryValue()); |
| 41 alias->SetString("id_ref", base::StringPrintf("%p", picture_.get())); | 41 alias->SetString("id_ref", base::StringPrintf("%p", picture_.get())); |
| 42 | 42 |
| 43 scoped_ptr<base::DictionaryValue> res(new base::DictionaryValue()); | 43 scoped_ptr<base::DictionaryValue> res(new base::DictionaryValue()); |
| 44 res->Set("alias", alias.release()); | 44 res->Set("alias", alias.release()); |
| 45 | 45 |
| 46 std::string tmp; | 46 std::string tmp; |
| 47 base::JSONWriter::Write(res.get(), &tmp); | 47 base::JSONWriter::Write(res.get(), &tmp); |
| 48 out->append(tmp); | 48 out->append(tmp); |
| 49 } | 49 } |
| 50 | 50 |
| 51 void TracedPicture::AppendPicture(std::string* out) const { | 51 void TracedPicture::AppendPicture(std::string* out) const { |
| 52 scoped_ptr<base::Value> value = picture_->AsValue(); | 52 scoped_ptr<base::Value> value = picture_->AsValue(); |
| 53 std::string tmp; | 53 std::string tmp; |
| 54 base::JSONWriter::Write(value.get(), &tmp); | 54 base::JSONWriter::Write(value.get(), &tmp); |
| 55 out->append(tmp); | 55 out->append(tmp); |
| 56 } | 56 } |
| 57 | 57 |
| 58 } // namespace cc | 58 } // namespace cc |
| OLD | NEW |