| Index: mojo/services/surfaces/display_impl.h
 | 
| diff --git a/mojo/services/surfaces/display_impl.h b/mojo/services/surfaces/display_impl.h
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..19d11e37ef33644a1e3bb0bf12f44aabbe2282e7
 | 
| --- /dev/null
 | 
| +++ b/mojo/services/surfaces/display_impl.h
 | 
| @@ -0,0 +1,80 @@
 | 
| +// Copyright 2015 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 SERVICES_SURFACES_DISPLAY_IMPL_H_
 | 
| +#define SERVICES_SURFACES_DISPLAY_IMPL_H_
 | 
| +
 | 
| +#include "base/memory/scoped_ptr.h"
 | 
| +#include "cc/surfaces/display_client.h"
 | 
| +#include "cc/surfaces/surface_factory.h"
 | 
| +#include "cc/surfaces/surface_factory_client.h"
 | 
| +#include "mojo/public/cpp/bindings/strong_binding.h"
 | 
| +#include "third_party/mojo_services/src/surfaces/public/interfaces/display.mojom.h"
 | 
| +
 | 
| +namespace cc {
 | 
| +class Display;
 | 
| +class SurfaceFactory;
 | 
| +}
 | 
| +
 | 
| +namespace surfaces {
 | 
| +class SurfacesScheduler;
 | 
| +
 | 
| +class DisplayImpl : public mojo::Display,
 | 
| +                    public mojo::ViewportParameterListener,
 | 
| +                    public cc::DisplayClient,
 | 
| +                    public cc::SurfaceFactoryClient {
 | 
| + public:
 | 
| +  DisplayImpl(cc::SurfaceManager* manager,
 | 
| +              cc::SurfaceId cc_id,
 | 
| +              SurfacesScheduler* scheduler,
 | 
| +              mojo::ContextProviderPtr context_provider,
 | 
| +              mojo::ResourceReturnerPtr returner,
 | 
| +              mojo::InterfaceRequest<mojo::Display> display_request);
 | 
| +  ~DisplayImpl() override;
 | 
| +
 | 
| + private:
 | 
| +  void OnContextCreated(mojo::CommandBufferPtr gles2_client);
 | 
| +
 | 
| +  // mojo::Display implementation:
 | 
| +  void SubmitFrame(mojo::FramePtr frame,
 | 
| +                   const SubmitFrameCallback& callback) override;
 | 
| +
 | 
| +  // DisplayClient implementation.
 | 
| +  void DisplayDamaged() override;
 | 
| +  void DidSwapBuffers() override;
 | 
| +  void DidSwapBuffersComplete() override;
 | 
| +  void CommitVSyncParameters(base::TimeTicks timebase,
 | 
| +                             base::TimeDelta interval) override;
 | 
| +  void OutputSurfaceLost() override;
 | 
| +  void SetMemoryPolicy(const cc::ManagedMemoryPolicy& policy) override;
 | 
| +
 | 
| +  // ViewportParameterListener
 | 
| +  void OnVSyncParametersUpdated(int64_t timebase, int64_t interval) override;
 | 
| +
 | 
| +  // SurfaceFactoryClient implementation.
 | 
| +  void ReturnResources(const cc::ReturnedResourceArray& resources) override;
 | 
| +
 | 
| +  void Draw();
 | 
| +
 | 
| +  cc::SurfaceManager* manager_;
 | 
| +  cc::SurfaceFactory factory_;
 | 
| +  cc::SurfaceId cc_id_;
 | 
| +  SurfacesScheduler* scheduler_;
 | 
| +  mojo::ContextProviderPtr context_provider_;
 | 
| +  mojo::ResourceReturnerPtr returner_;
 | 
| +
 | 
| +  mojo::FramePtr pending_frame_;
 | 
| +  SubmitFrameCallback pending_callback_;
 | 
| +
 | 
| +  scoped_ptr<cc::Display> display_;
 | 
| +
 | 
| +  mojo::Binding<mojo::ViewportParameterListener> viewport_param_binding_;
 | 
| +  mojo::StrongBinding<mojo::Display> display_binding_;
 | 
| +
 | 
| +  DISALLOW_COPY_AND_ASSIGN(DisplayImpl);
 | 
| +};
 | 
| +
 | 
| +}  // namespace surfaces
 | 
| +
 | 
| +#endif  // SERVICES_SURFACES_DISPLAY_IMPL_H_
 | 
| 
 |