cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / mojo / cc / output_surface_mojo.h
blobe3b2ddbce631dc798998c0e73610c17c553f7726
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MOJO_CC_OUTPUT_SURFACE_MOJO_H_
6 #define MOJO_CC_OUTPUT_SURFACE_MOJO_H_
8 #include "base/macros.h"
9 #include "cc/output/output_surface.h"
10 #include "cc/surfaces/surface_id.h"
11 #include "components/view_manager/public/cpp/view_surface.h"
12 #include "components/view_manager/public/cpp/view_surface_client.h"
13 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h"
15 namespace mojo {
17 class OutputSurfaceMojo : public cc::OutputSurface,
18 public mojo::ViewSurfaceClient {
19 public:
20 OutputSurfaceMojo(const scoped_refptr<cc::ContextProvider>& context_provider,
21 scoped_ptr<mojo::ViewSurface> surface);
22 ~OutputSurfaceMojo() override;
24 // cc::OutputSurface implementation.
25 void SwapBuffers(cc::CompositorFrame* frame) override;
26 bool BindToClient(cc::OutputSurfaceClient* client) override;
28 private:
29 // uip::SurfaceObserver implementation:
30 void OnResourcesReturned(
31 mojo::ViewSurface* surface,
32 mojo::Array<mojo::ReturnedResourcePtr> resources) override;
34 scoped_ptr<mojo::ViewSurface> surface_;
36 DISALLOW_COPY_AND_ASSIGN(OutputSurfaceMojo);
40 #endif // MOJO_CC_OUTPUT_SURFACE_MOJO_H_