~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to src/client/perf_report.h

  • Committer: Package Import Robot
  • Author(s): CI Train Bot
  • Date: 2015-05-12 13:12:55 UTC
  • mto: This revision was merged to the branch mainline in revision 96.
  • Revision ID: package-import@ubuntu.com-20150512131255-y7z12i8n4pbvo70x
Tags: upstream-0.13.0+15.10.20150512
ImportĀ upstreamĀ versionĀ 0.13.0+15.10.20150512

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
class PerfReport
28
28
{
29
29
public:
30
 
    virtual ~PerfReport() = default;
 
30
    PerfReport() = default;
31
31
    virtual void name_surface(char const*) = 0;
32
32
    virtual void begin_frame(int buffer_id) = 0;
33
33
    virtual void end_frame(int buffer_id) = 0;
 
34
protected:
 
35
    virtual ~PerfReport() = default;
 
36
    PerfReport(PerfReport const&) = delete;
 
37
    PerfReport& operator=(PerfReport const&) = delete;
34
38
};
35
39
 
36
40
class NullPerfReport : public PerfReport