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

Unified Diff: remoting/ios/bridge/frame_consumer_bridge_callback.h

Issue 186733007: iOS Chromoting Client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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: remoting/ios/bridge/frame_consumer_bridge_callback.h
diff --git a/remoting/ios/bridge/frame_consumer_bridge_callback.h b/remoting/ios/bridge/frame_consumer_bridge_callback.h
new file mode 100644
index 0000000000000000000000000000000000000000..edfbb4863aab127f497f436058e1355e7ccf773a
--- /dev/null
+++ b/remoting/ios/bridge/frame_consumer_bridge_callback.h
@@ -0,0 +1,16 @@
+// Copyright 2014 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_IOS_BRIDGE_FRAME_CONSUMER_BRIDGE_CALLBACK_H_
+#define REMOTING_IOS_BRIDGE_FRAME_CONSUMER_BRIDGE_CALLBACK_H_
+
+#include "base/callback.h"
+#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
+
+typedef base::Callback<void(const webrtc::DesktopSize& view_size,
+ webrtc::DesktopFrame* buffer,
+ const webrtc::DesktopRegion& region)>
+ FrameConsumerBridgeCallback;
dcaiafa 2014/03/19 01:14:15 Scope this typedef into FrameConsumerBridge, renam
aboone 2014/03/21 16:42:07 Done.
+
+#endif // REMOTING_IOS_BRIDGE_FRAME_CONSUMER_BRIDGE_CALLBACK_H_

Powered by Google App Engine
This is Rietveld 408576698