// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_CLIENT_DISPLAY_GL_DESKTOP_H_ #define REMOTING_CLIENT_DISPLAY_GL_DESKTOP_H_ #include <memory> #include <vector> #include "base/memory/weak_ptr.h" #include "base/threading/thread_checker.h" #include "remoting/client/display/drawable.h" #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" namespace webrtc { class DesktopFrame; } // namespace webrtc namespace remoting { class Canvas; // This class draws the desktop on the canvas. class GlDesktop : public Drawable { … }; } // namespace remoting #endif // REMOTING_CLIENT_DISPLAY_GL_DESKTOP_H_