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

Unified Diff: remoting/client/frame_consumer.h

Issue 1559043004: Add GetFrameConsumer() in VideoRenderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_video_renderer
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/chromoting_client.h ('k') | remoting/client/jni/jni_frame_consumer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/frame_consumer.h
diff --git a/remoting/client/frame_consumer.h b/remoting/client/frame_consumer.h
deleted file mode 100644
index 792d2f6f22df6ed1ca76f8916242e79d349d8847..0000000000000000000000000000000000000000
--- a/remoting/client/frame_consumer.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef REMOTING_CLIENT_FRAME_CONSUMER_H_
-#define REMOTING_CLIENT_FRAME_CONSUMER_H_
-
-#include "base/macros.h"
-
-namespace webrtc {
-class DesktopFrame;
-class DesktopRect;
-class DesktopRegion;
-class DesktopSize;
-class DesktopVector;
-} // namespace webrtc
-
-namespace remoting {
-
-class FrameConsumer {
- public:
- // List of supported pixel formats needed by various platforms.
- enum PixelFormat {
- FORMAT_BGRA, // Used by the Pepper plugin.
- FORMAT_RGBA, // Used for Android's Bitmap class.
- };
-
- virtual scoped_ptr<webrtc::DesktopFrame> AllocateFrame(
- const webrtc::DesktopSize& size) = 0;
-
- virtual void DrawFrame(scoped_ptr<webrtc::DesktopFrame> frame,
- const base::Closure& done) = 0;
-
- // Returns the preferred pixel encoding for the platform.
- virtual PixelFormat GetPixelFormat() = 0;
-
- protected:
- FrameConsumer() {}
- virtual ~FrameConsumer() {}
-
- private:
- DISALLOW_COPY_AND_ASSIGN(FrameConsumer);
-};
-
-} // namespace remoting
-
-#endif // REMOTING_CLIENT_FRAME_CONSUMER_H_
« no previous file with comments | « remoting/client/chromoting_client.h ('k') | remoting/client/jni/jni_frame_consumer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698