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

« back to all changes in this revision

Viewing changes to tests/integration-tests/input/android/test_android_cursor_listener.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:
18
18
 */
19
19
 
20
20
#include "src/server/input/android/android_input_manager.h"
 
21
#include "src/server/report/null_report_factory.h"
 
22
 
21
23
#include "mir/input/android/default_android_input_configuration.h"
22
24
#include "mir/input/event_filter.h"
23
25
#include "mir/input/cursor_listener.h"
24
26
#include "mir/input/input_targets.h"
25
 
#include "mir/input/null_input_report.h"
26
27
#include "mir/input/input_region.h"
27
28
#include "mir/geometry/rectangle.h"
28
29
 
44
45
namespace geom = mir::geometry;
45
46
namespace mt = mir::test;
46
47
namespace mtd = mir::test::doubles;
 
48
namespace mr = mir::report;
47
49
 
48
50
using mtd::MockEventFilter;
49
51
 
86
88
            event_filter,
87
89
            mt::fake_shared(input_region),
88
90
            mt::fake_shared(cursor_listener),
89
 
            std::make_shared<mi::NullInputReport>());
 
91
            mr::null_input_report());
90
92
 
91
93
        fake_event_hub = configuration->the_fake_event_hub();
92
94