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

Side by Side Diff: cc/debug/traced_display_item_list.cc

Issue 2747273002: cc: Remove AsValue virtual from DisplayItem. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « cc/debug/traced_display_item_list.h ('k') | cc/playback/clip_display_item.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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 #include "cc/debug/traced_display_item_list.h"
5
6 #include "base/json/json_writer.h"
7 #include "cc/debug/traced_value.h"
8 #include "cc/playback/display_item_list.h"
9
10 namespace cc {
11
12 TracedDisplayItemList::TracedDisplayItemList(
13 scoped_refptr<const DisplayItemList> list,
14 bool include_items)
15 : display_item_list_(list), include_items_(include_items) {
16 }
17
18 TracedDisplayItemList::~TracedDisplayItemList() {
19 }
20
21 void TracedDisplayItemList::AppendAsTraceFormat(std::string* out) const {
22 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> convertable(
23 display_item_list_->AsValue(include_items_));
24 convertable->AppendAsTraceFormat(out);
25 }
26
27 } // namespace cc
OLDNEW
« no previous file with comments | « cc/debug/traced_display_item_list.h ('k') | cc/playback/clip_display_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698