~ubuntu-branches/ubuntu/utopic/mir/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/unit-tests/compositor/test_multi_threaded_compositor.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-03-10 19:28:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: package-import@ubuntu.com-20140310192846-rq9qm3ec26yrelo2
Tags: upstream-0.1.6+14.04.20140310
ImportĀ upstreamĀ versionĀ 0.1.6+14.04.20140310

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "mir/compositor/display_buffer_compositor.h"
21
21
#include "mir/compositor/scene.h"
22
22
#include "mir/compositor/display_buffer_compositor_factory.h"
23
 
#include "mir/compositor/compositor_report.h"
 
23
#include "src/server/report/null_report_factory.h"
24
24
#include "mir_test_doubles/null_display.h"
25
25
#include "mir_test_doubles/null_display_buffer.h"
26
26
#include "mir_test_doubles/mock_display_buffer.h"
39
39
namespace mg = mir::graphics;
40
40
namespace geom = mir::geometry;
41
41
namespace mtd = mir::test::doubles;
 
42
namespace mr = mir::report;
42
43
 
43
44
namespace
44
45
{
308
309
    }
309
310
};
310
311
 
311
 
auto const null_report = std::make_shared<mc::NullCompositorReport>();
 
312
auto const null_report = mr::null_compositor_report();
312
313
 
313
314
}
314
315