cc: Added inline to Tile::IsReadyToDraw
[chromium-blink-merge.git] / cc / debug / traced_picture.h
blob9137d8f830ea7c5d2d099ee393c90dd8bf33d649
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_PICTURE_H_
6 #define CC_DEBUG_TRACED_PICTURE_H_
8 #include <string>
10 #include "base/debug/trace_event.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "cc/resources/picture.h"
14 namespace cc {
16 class TracedPicture : public base::debug::ConvertableToTraceFormat {
17 public:
18 explicit TracedPicture(scoped_refptr<Picture>);
20 virtual ~TracedPicture();
22 static scoped_ptr<base::debug::ConvertableToTraceFormat>
23 AsTraceablePicture(Picture* picture);
25 virtual void AppendAsTraceFormat(std::string* out) const OVERRIDE;
27 private:
28 scoped_refptr<Picture> picture_;
30 DISALLOW_COPY_AND_ASSIGN(TracedPicture);
33 } // namespace cc
35 #endif // CC_DEBUG_TRACED_PICTURE_H_