~vanvugt/mir/fix-1226139

« back to all changes in this revision

Viewing changes to include/platform/mir/graphics/native_platform.h

  • Committer: Tarmac
  • Author(s): Alan Griffiths
  • Date: 2013-09-11 12:17:14 UTC
  • mfrom: (1059.1.3 mir)
  • Revision ID: tarmac-20130911121714-l4u0c5s7jystmhm6
graphics: Simplify NativeAndroidPlatform out of existence.

Approved by Alexandros Frantzis, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
class InternalClient;
35
35
class BufferIPCPacker;
36
36
class Buffer;
 
37
class DisplayReport;
37
38
 
38
39
class NativePlatform
39
40
{
56
57
    NativePlatform& operator=(NativePlatform const&) = delete;
57
58
};
58
59
 
59
 
extern "C" typedef std::shared_ptr<NativePlatform>(*CreateNativePlatform)(/* TODO */);
60
 
extern "C" std::shared_ptr<NativePlatform> create_native_platform(/* TODO */);
 
60
extern "C" typedef std::shared_ptr<NativePlatform>(*CreateNativePlatform)(std::shared_ptr<DisplayReport> const& report);
 
61
extern "C" std::shared_ptr<NativePlatform> create_native_platform(std::shared_ptr<DisplayReport> const& report);
61
62
}
62
63
}
63
64