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

« back to all changes in this revision

Viewing changes to include/test/mir_test_doubles/mock_drm.h

  • 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:
88
88
    MockDRM();
89
89
    ~MockDRM() noexcept;
90
90
 
 
91
    MOCK_METHOD3(open, int(char const* path, int flags, mode_t mode));
91
92
    MOCK_METHOD2(drmOpen, int(const char *name, const char *busid));
92
93
    MOCK_METHOD1(drmClose, int(int fd));
93
94
    MOCK_METHOD3(drmIoctl, int(int fd, unsigned long request, void *arg));