Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1052)

Side by Side Diff: components/mus/surfaces/top_level_display_client.h

Issue 1344573002: Mandoline: Rename components/view_manager to components/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_VIEW_MANAGER_SURFACES_DISPLAY_IMPL_H_ 5 #ifndef COMPONENTS_MUS_SURFACES_DISPLAY_IMPL_H_
6 #define COMPONENTS_VIEW_MANAGER_SURFACES_DISPLAY_IMPL_H_ 6 #define COMPONENTS_MUS_SURFACES_DISPLAY_IMPL_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "cc/surfaces/display_client.h" 9 #include "cc/surfaces/display_client.h"
10 #include "cc/surfaces/surface_factory.h" 10 #include "cc/surfaces/surface_factory.h"
11 #include "cc/surfaces/surface_factory_client.h" 11 #include "cc/surfaces/surface_factory_client.h"
12 #include "components/view_manager/surfaces/surfaces_context_provider.h" 12 #include "components/mus/surfaces/surfaces_context_provider.h"
13 #include "components/view_manager/surfaces/surfaces_context_provider_delegate.h" 13 #include "components/mus/surfaces/surfaces_context_provider_delegate.h"
14 #include "components/view_manager/surfaces/surfaces_state.h" 14 #include "components/mus/surfaces/surfaces_state.h"
15 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h" 15 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h"
16 #include "ui/gfx/native_widget_types.h" 16 #include "ui/gfx/native_widget_types.h"
17 17
18 namespace cc { 18 namespace cc {
19 class Display; 19 class Display;
20 class SurfaceFactory; 20 class SurfaceFactory;
21 } 21 }
22 22
23 namespace gles2 { 23 namespace gles2 {
24 class GpuState; 24 class GpuState;
25 } 25 }
26 26
27 namespace surfaces { 27 namespace surfaces {
28 28
29 class DisplayDelegate; 29 class DisplayDelegate;
30 class SurfacesScheduler; 30 class SurfacesScheduler;
31 class SurfacesState; 31 class SurfacesState;
32 32
33 // A TopLevelDisplayClient manages the top level surface that is rendered into a 33 // A TopLevelDisplayClient manages the top level surface that is rendered into a
34 // provided AcceleratedWidget. Frames are submitted here. New frames are 34 // provided AcceleratedWidget. Frames are submitted here. New frames are
35 // scheduled to be generated here based on VSync. 35 // scheduled to be generated here based on VSync.
36 class TopLevelDisplayClient 36 class TopLevelDisplayClient : public cc::DisplayClient,
37 : public cc::DisplayClient, 37 public cc::SurfaceFactoryClient,
38 public cc::SurfaceFactoryClient, 38 public surfaces::SurfacesContextProviderDelegate {
39 public surfaces::SurfacesContextProviderDelegate {
40 public: 39 public:
41 TopLevelDisplayClient(gfx::AcceleratedWidget widget, 40 TopLevelDisplayClient(gfx::AcceleratedWidget widget,
42 const scoped_refptr<gles2::GpuState>& gpu_state, 41 const scoped_refptr<gles2::GpuState>& gpu_state,
43 const scoped_refptr<SurfacesState>& surfaces_state); 42 const scoped_refptr<SurfacesState>& surfaces_state);
44 ~TopLevelDisplayClient() override; 43 ~TopLevelDisplayClient() override;
45 44
46 void SubmitCompositorFrame(scoped_ptr<cc::CompositorFrame> frame, 45 void SubmitCompositorFrame(scoped_ptr<cc::CompositorFrame> frame,
47 const base::Closure& callback); 46 const base::Closure& callback);
48 47
49 private: 48 private:
(...skipping 19 matching lines...) Expand all
69 gfx::Size last_submitted_frame_size_; 68 gfx::Size last_submitted_frame_size_;
70 scoped_ptr<cc::CompositorFrame> pending_frame_; 69 scoped_ptr<cc::CompositorFrame> pending_frame_;
71 70
72 scoped_ptr<cc::Display> display_; 71 scoped_ptr<cc::Display> display_;
73 72
74 DISALLOW_COPY_AND_ASSIGN(TopLevelDisplayClient); 73 DISALLOW_COPY_AND_ASSIGN(TopLevelDisplayClient);
75 }; 74 };
76 75
77 } // namespace surfaces 76 } // namespace surfaces
78 77
79 #endif // COMPONENTS_VIEW_MANAGER_SURFACES_DISPLAY_IMPL_H_ 78 #endif // COMPONENTS_MUS_SURFACES_DISPLAY_IMPL_H_
OLDNEW
« no previous file with comments | « components/mus/surfaces/surfaces_state.cc ('k') | components/mus/surfaces/top_level_display_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698