Revert 207377 "Disable TabCaptureApiTest.EndToEnd for Linux (non..."
[chromium-blink-merge.git] / remoting / host / screen_controls.h
blob1f707f9681d99e73b3d7080693ec036aa4f528bf
1 // Copyright (c) 2013 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.
5 #ifndef REMOTING_HOST_SCREEN_CONTROLS_H_
6 #define REMOTING_HOST_SCREEN_CONTROLS_H_
8 #include "base/basictypes.h"
10 namespace remoting {
12 class ScreenResolution;
14 // Used to change the screen resolution (both dimensions and DPI).
15 class ScreenControls {
16 public:
17 virtual ~ScreenControls() {}
19 // Attempts to set new screen resolution in the session.
20 virtual void SetScreenResolution(const ScreenResolution& resolution) = 0;
23 } // namespace remoting
25 #endif // REMOTING_HOST_SCREEN_CONTROLS_H_