summaryrefslogtreecommitdiffstats
path: root/mojo/examples/sample_app/native_viewport_client_impl.h
blob: da5b0a1290a7331abb3aa5746c38d0f505dd9c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MOJO_EXAMPLES_SAMPLE_APP_NATIVE_VIEWPORT_CLIENT_IMPL_H_
#define MOJO_EXAMPLES_SAMPLE_APP_NATIVE_VIEWPORT_CLIENT_IMPL_H_

#include "mojo/public/bindings/lib/remote_ptr.h"
#include "mojom/native_viewport.h"

namespace mojo {
namespace examples {

class NativeViewportClientImpl : public NativeViewportClientStub {
 public:
  explicit NativeViewportClientImpl(ScopedMessagePipeHandle pipe);
  virtual ~NativeViewportClientImpl();

  virtual void DidOpen() MOJO_OVERRIDE;
  virtual void DidCreateGLContext(uint64_t gl) MOJO_OVERRIDE;

  NativeViewport* service() {
    return service_.get();
  }

 private:
  RemotePtr<NativeViewport> service_;
};

}  // examples
}  // mojo

#endif  // MOJO_EXAMPLES_SAMPLE_APP_NATIVE_VIEWPORT_CLIENT_IMPL_H_