| Index: cc/debug/traced_display_item_list.cc
|
| diff --git a/cc/debug/traced_display_item_list.cc b/cc/debug/traced_display_item_list.cc
|
| deleted file mode 100644
|
| index b02446e9cd46e6700c5636cf8a6ff5f182c80689..0000000000000000000000000000000000000000
|
| --- a/cc/debug/traced_display_item_list.cc
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -// Copyright 2015 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_display_item_list.h"
|
| -
|
| -#include "base/json/json_writer.h"
|
| -#include "cc/debug/traced_value.h"
|
| -#include "cc/playback/display_item_list.h"
|
| -
|
| -namespace cc {
|
| -
|
| -TracedDisplayItemList::TracedDisplayItemList(
|
| - scoped_refptr<const DisplayItemList> list,
|
| - bool include_items)
|
| - : display_item_list_(list), include_items_(include_items) {
|
| -}
|
| -
|
| -TracedDisplayItemList::~TracedDisplayItemList() {
|
| -}
|
| -
|
| -void TracedDisplayItemList::AppendAsTraceFormat(std::string* out) const {
|
| - std::unique_ptr<base::trace_event::ConvertableToTraceFormat> convertable(
|
| - display_item_list_->AsValue(include_items_));
|
| - convertable->AppendAsTraceFormat(out);
|
| -}
|
| -
|
| -} // namespace cc
|
|
|