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

Side by Side Diff: content/common/gpu/texture_image_transport_surface.h

Issue 123563002: Remove gpu side LatencyInfo merging (Closed) Base URL: http://git.chromium.org/chromium/src.git@gpu-per-event-latency-6-small
Patch Set: fix mac_rel compiler error. Move kMaxLatencyInfoNumber to .cc file Created 6 years, 11 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_COMMON_GPU_TEXTURE_IMAGE_TRANSPORT_SURFACE_H_ 5 #ifndef CONTENT_COMMON_GPU_TEXTURE_IMAGE_TRANSPORT_SURFACE_H_
6 #define CONTENT_COMMON_GPU_TEXTURE_IMAGE_TRANSPORT_SURFACE_H_ 6 #define CONTENT_COMMON_GPU_TEXTURE_IMAGE_TRANSPORT_SURFACE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 virtual void* GetDisplay() OVERRIDE; 46 virtual void* GetDisplay() OVERRIDE;
47 virtual void* GetConfig() OVERRIDE; 47 virtual void* GetConfig() OVERRIDE;
48 48
49 protected: 49 protected:
50 // ImageTransportSurface implementation. 50 // ImageTransportSurface implementation.
51 virtual void OnBufferPresented( 51 virtual void OnBufferPresented(
52 const AcceleratedSurfaceMsg_BufferPresented_Params& params) OVERRIDE; 52 const AcceleratedSurfaceMsg_BufferPresented_Params& params) OVERRIDE;
53 virtual void OnResizeViewACK() OVERRIDE; 53 virtual void OnResizeViewACK() OVERRIDE;
54 virtual void OnResize(gfx::Size size, float scale_factor) OVERRIDE; 54 virtual void OnResize(gfx::Size size, float scale_factor) OVERRIDE;
55 virtual void SetLatencyInfo( 55 virtual void SetLatencyInfo(
56 const ui::LatencyInfo& latency_info) OVERRIDE; 56 const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE;
57 virtual void WakeUpGpu() OVERRIDE; 57 virtual void WakeUpGpu() OVERRIDE;
58 58
59 // GpuCommandBufferStub::DestructionObserver implementation. 59 // GpuCommandBufferStub::DestructionObserver implementation.
60 virtual void OnWillDestroyStub() OVERRIDE; 60 virtual void OnWillDestroyStub() OVERRIDE;
61 61
62 private: 62 private:
63 63
64 gfx::Size backbuffer_size() const { 64 gfx::Size backbuffer_size() const {
65 DCHECK(backbuffer_.get()); 65 DCHECK(backbuffer_.get());
66 GLsizei width = 0; 66 GLsizei width = 0;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 // Whether a SwapBuffers is pending. 110 // Whether a SwapBuffers is pending.
111 bool is_swap_buffers_pending_; 111 bool is_swap_buffers_pending_;
112 112
113 // Whether we unscheduled command buffer because of pending SwapBuffers. 113 // Whether we unscheduled command buffer because of pending SwapBuffers.
114 bool did_unschedule_; 114 bool did_unschedule_;
115 115
116 // Holds a reference to the mailbox manager for cleanup. 116 // Holds a reference to the mailbox manager for cleanup.
117 scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_; 117 scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_;
118 118
119 ui::LatencyInfo latency_info_; 119 std::vector<ui::LatencyInfo> latency_info_;
120 DISALLOW_COPY_AND_ASSIGN(TextureImageTransportSurface); 120 DISALLOW_COPY_AND_ASSIGN(TextureImageTransportSurface);
121 }; 121 };
122 122
123 } // namespace content 123 } // namespace content
124 124
125 #endif // CONTENT_COMMON_GPU_TEXTURE_IMAGE_TRANSPORT_SURFACE_H_ 125 #endif // CONTENT_COMMON_GPU_TEXTURE_IMAGE_TRANSPORT_SURFACE_H_
OLDNEW
« no previous file with comments | « content/common/gpu/image_transport_surface_win.cc ('k') | content/common/gpu/texture_image_transport_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698