summaryrefslogtreecommitdiffstats
path: root/mojo/services/surfaces/surfaces_service_application.h
blob: bf45a813f958fa9aeded8c23f7e2d8a3aa17072e (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
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2014 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_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_
#define MOJO_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_

#include "base/macros.h"
#include "cc/surfaces/surface_manager.h"
#include "mojo/public/cpp/application/application_delegate.h"
#include "mojo/services/surfaces/surfaces_impl.h"

namespace mojo {
class ApplicationConnection;

class SurfacesServiceApplication : public ApplicationDelegate,
                                   public InterfaceFactory<Surface>,
                                   public SurfacesImpl::Client {
 public:
  SurfacesServiceApplication();
  virtual ~SurfacesServiceApplication();

  // ApplicationDelegate implementation.
  virtual bool ConfigureIncomingConnection(
      ApplicationConnection* connection) OVERRIDE;

  // InterfaceFactory<Surface> implementation.
  virtual void Create(ApplicationConnection* connection,
                      InterfaceRequest<Surface> request) OVERRIDE;

  // SurfacesImpl::Client implementation.
  virtual void FrameSubmitted() OVERRIDE;
  virtual void SetDisplay(cc::Display*) OVERRIDE;

 private:
  cc::SurfaceManager manager_;
  uint32_t next_id_namespace_;
  cc::Display* display_;

  DISALLOW_COPY_AND_ASSIGN(SurfacesServiceApplication);
};

}  // namespace mojo

#endif  //  MOJO_SERVICES_SURFACES_SURFACES_SERVICE_APPLICATION_H_