| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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_CLIENT_IOS_APP_EXAMPLE_VIEW_CONTROLLER_H_ | |
| 6 #define REMOTING_CLIENT_IOS_APP_EXAMPLE_VIEW_CONTROLLER_H_ | |
| 7 | |
| 8 #import <GLKit/GLKit.h> | |
| 9 #import "remoting/client/ios/display/gl_display_handler.h" | |
| 10 #include "remoting/client/ios/app_runtime.h" | |
| 11 | |
| 12 #include "remoting/client/software_video_renderer.h" | |
| 13 #include "remoting/codec/video_encoder_verbatim.h" | |
| 14 #include "remoting/proto/video.pb.h" | |
| 15 #import "remoting/client/ios/client_gestures.h" | |
| 16 | |
| 17 @interface ExampleViewController : GLKViewController { | |
| 18 @private | |
| 19 | |
| 20 // The GLES3 context being drawn to. | |
| 21 EAGLContext* _context; | |
| 22 remoting::ios::AppRuntime* _runtime; | |
| 23 GlDisplayHandler* _display_handler; | |
| 24 remoting::SoftwareVideoRenderer* _video_renderer; | |
| 25 | |
| 26 remoting::VideoEncoderVerbatim _encoder; | |
| 27 ClientGestures* _gestures; | |
| 28 } | |
| 29 | |
| 30 @end | |
| 31 | |
| 32 #endif // REMOTING_CLIENT_IOS_APP_EXAMPLE_VIEW_CONTROLLER_H_ | |
| OLD | NEW |