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

Unified Diff: mojo/gles2/command_buffer_client_impl.h

Issue 384513003: Remove RequestAnimationFrame from mojo, add delayed tasks to RunLoop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: mojo/gles2/command_buffer_client_impl.h
diff --git a/mojo/gles2/command_buffer_client_impl.h b/mojo/gles2/command_buffer_client_impl.h
index f2d19b029f20c9d54e3d5025776ce30880218ffa..e1921695f4b1c837a13e4e1833c18191ce01ffb4 100644
--- a/mojo/gles2/command_buffer_client_impl.h
+++ b/mojo/gles2/command_buffer_client_impl.h
@@ -27,7 +27,6 @@ class CommandBufferDelegate {
public:
virtual ~CommandBufferDelegate();
virtual void ContextLost();
- virtual void DrawAnimationFrame();
};
class CommandBufferClientImpl : public CommandBufferClient,
@@ -72,16 +71,12 @@ class CommandBufferClientImpl : public CommandBufferClient,
virtual void Echo(const base::Closure& callback) OVERRIDE;
virtual uint32 CreateStreamTexture(uint32 texture_id) OVERRIDE;
- void RequestAnimationFrames();
- void CancelAnimationFrames();
-
private:
class SyncClientImpl;
// CommandBufferClient implementation:
virtual void DidDestroy() OVERRIDE;
virtual void LostContext(int32_t lost_reason) OVERRIDE;
- virtual void DrawAnimationFrame() OVERRIDE;
// ErrorHandler implementation:
virtual void OnConnectionError() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698