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

« back to all changes in this revision

Viewing changes to include/platform/mir/graphics/drm_authenticator.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:
19
19
#ifndef MIR_GRAPHICS_DRM_AUTHENTICATOR_H_
20
20
#define MIR_GRAPHICS_DRM_AUTHENTICATOR_H_
21
21
 
22
 
#include <xf86drm.h>
23
 
 
24
22
namespace mir
25
23
{
26
24
namespace graphics
31
29
public:
32
30
    virtual ~DRMAuthenticator() {}
33
31
 
34
 
    virtual void drm_auth_magic(drm_magic_t magic) = 0;
 
32
    virtual void drm_auth_magic(unsigned int magic) = 0;
35
33
 
36
34
protected:
37
35
    DRMAuthenticator() = default;