Chromium Code Reviews| 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_ |