Chromium Code Reviews| 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 too. | |
|
joedow
2017/01/25 23:16:28
nit: s/too/to
nicholss
2017/01/26 18:00:15
Done.
| |
| 21 EAGLContext* _context; | |
| 22 remoting::ios::AppRuntime* _runtime; | |
| 23 GlDisplayHandler* displayHandler; | |
|
joedow
2017/01/25 23:16:28
displayHandler needs a leading underscore (_displa
nicholss
2017/01/26 18:00:16
This is really confusing to know which to use, inf
| |
| 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 |