OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef REMOTING_IOS_BRIDGE_FRAME_CONSUMER_BRIDGE_CALLBACK_H_ | |
6 #define REMOTING_IOS_BRIDGE_FRAME_CONSUMER_BRIDGE_CALLBACK_H_ | |
7 | |
8 #include "base/callback.h" | |
9 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" | |
10 | |
11 typedef base::Callback<void(const webrtc::DesktopSize& view_size, | |
12 webrtc::DesktopFrame* buffer, | |
13 const webrtc::DesktopRegion& region)> | |
14 FrameConsumerBridgeCallback; | |
dcaiafa
2014/03/19 01:14:15
Scope this typedef into FrameConsumerBridge, renam
aboone
2014/03/21 16:42:07
Done.
| |
15 | |
16 #endif // REMOTING_IOS_BRIDGE_FRAME_CONSUMER_BRIDGE_CALLBACK_H_ | |
OLD | NEW |