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

Side by Side Diff: content/browser/compositor/browser_compositor_output_surface.h

Issue 228083002: Make ReflectorImpl use mailboxes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/compositor/browser_compositor_output_surface.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 5 #ifndef CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
7 7
8 #include "base/id_map.h" 8 #include "base/id_map.h"
9 #include "base/threading/non_thread_safe.h" 9 #include "base/threading/non_thread_safe.h"
10 #include "cc/output/output_surface.h" 10 #include "cc/output/output_surface.h"
(...skipping 11 matching lines...) Expand all
22 22
23 class CONTENT_EXPORT BrowserCompositorOutputSurface 23 class CONTENT_EXPORT BrowserCompositorOutputSurface
24 : public cc::OutputSurface, 24 : public cc::OutputSurface,
25 public ui::CompositorVSyncManager::Observer, 25 public ui::CompositorVSyncManager::Observer,
26 public base::NonThreadSafe { 26 public base::NonThreadSafe {
27 public: 27 public:
28 virtual ~BrowserCompositorOutputSurface(); 28 virtual ~BrowserCompositorOutputSurface();
29 29
30 // cc::OutputSurface implementation. 30 // cc::OutputSurface implementation.
31 virtual bool BindToClient(cc::OutputSurfaceClient* client) OVERRIDE; 31 virtual bool BindToClient(cc::OutputSurfaceClient* client) OVERRIDE;
32 virtual void Reshape(const gfx::Size& size, float scale_factor) OVERRIDE;
33 32
34 // ui::CompositorOutputSurface::Observer implementation. 33 // ui::CompositorOutputSurface::Observer implementation.
35 virtual void OnUpdateVSyncParameters(base::TimeTicks timebase, 34 virtual void OnUpdateVSyncParameters(base::TimeTicks timebase,
36 base::TimeDelta interval) OVERRIDE; 35 base::TimeDelta interval) OVERRIDE;
37 36
38 void OnUpdateVSyncParametersFromGpu(base::TimeTicks tiembase, 37 void OnUpdateVSyncParametersFromGpu(base::TimeTicks tiembase,
39 base::TimeDelta interval); 38 base::TimeDelta interval);
40 39
41 void SetReflector(ReflectorImpl* reflector); 40 void SetReflector(ReflectorImpl* reflector);
42 41
(...skipping 20 matching lines...) Expand all
63 62
64 private: 63 private:
65 void Initialize(); 64 void Initialize();
66 65
67 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOutputSurface); 66 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOutputSurface);
68 }; 67 };
69 68
70 } // namespace content 69 } // namespace content
71 70
72 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 71 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/compositor/browser_compositor_output_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698