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

Side by Side Diff: content/public/browser/render_widget_host_view_frame_subscriber.h

Issue 418283003: "Buttery Smooth" Tab Capture. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
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_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_FRAME_SUBSCRIBER_H_ 5 #ifndef CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_FRAME_SUBSCRIBER_H_
6 #define CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_FRAME_SUBSCRIBER_H_ 6 #define CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_FRAME_SUBSCRIBER_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 10
(...skipping 26 matching lines...) Expand all
37 // If |frame_captured| is true then frame provided contains valid content and 37 // If |frame_captured| is true then frame provided contains valid content and
38 // |timestamp| is the time when the frame was painted. 38 // |timestamp| is the time when the frame was painted.
39 // 39 //
40 // If |frame_captured| is false then the content in frame provided is 40 // If |frame_captured| is false then the content in frame provided is
41 // invalid. There was an error during the process of frame capture or the 41 // invalid. There was an error during the process of frame capture or the
42 // platform layer is shutting down. |timestamp| is also invalid in this case. 42 // platform layer is shutting down. |timestamp| is also invalid in this case.
43 typedef base::Callback<void(base::TimeTicks /* timestamp */, 43 typedef base::Callback<void(base::TimeTicks /* timestamp */,
44 bool /* frame_captured */)> DeliverFrameCallback; 44 bool /* frame_captured */)> DeliverFrameCallback;
45 45
46 // Called when a new frame is going to be presented at time 46 // Called when a new frame is going to be presented at time
47 // |present_time|. Implementation can decide whether the current frame should 47 // |present_time| with |damage_rect| being the region of the frame that has
48 // be captured or not. 48 // changed since the last frame. The implementation decides whether the
49 // current frame should be captured or not.
49 // 50 //
50 // Return true if the current frame should be captured. If so, |storage| 51 // Return true if the current frame should be captured. If so, |storage|
51 // should will be set to hold an appropriately sized and allocated buffer 52 // will be set to hold an appropriately sized and allocated buffer into which
52 // into which to copy the frame. The platform presenter will perform scaling 53 // to copy the frame. The platform presenter will perform scaling and color
53 // and color space conversion to fit into the output frame. 54 // space conversion to fit into the output frame.
54 // 55 //
55 // Destination format is determined by |storage|, currently only 56 // Destination format is determined by |storage|, currently only
56 // media::VideoFrame::YV12 is supported. Platform layer will perform color 57 // media::VideoFrame::YV12 is supported. Platform layer will perform color
57 // space conversion if needed. 58 // space conversion if needed.
58 // 59 //
59 // When the frame is available |callback| will be called. It is up to the 60 // When the frame is available |callback| will be called. It is up to the
60 // platform layer to decide when to deliver a captured frame. 61 // platform layer to decide when to deliver a captured frame.
61 // 62 //
62 // Return false if the current frame should not be captured. 63 // Return false if the current frame should not be captured.
63 virtual bool ShouldCaptureFrame(base::TimeTicks present_time, 64 virtual bool ShouldCaptureFrame(const gfx::Rect& damage_rect,
65 base::TimeTicks present_time,
64 scoped_refptr<media::VideoFrame>* storage, 66 scoped_refptr<media::VideoFrame>* storage,
65 DeliverFrameCallback* callback) = 0; 67 DeliverFrameCallback* callback) = 0;
66 }; 68 };
67 69
68 } // namespace content 70 } // namespace content
69 71
70 #endif // CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_FRAME_SUBSCRIBER_H_ 72 #endif // CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_FRAME_SUBSCRIBER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698