[webcrypto] Implement RSA-PSS using BoringSSL.
[chromium-blink-merge.git] / ash / test / display_manager_test_api.h
blobbe5dbb953294f0575da0f533911d15dd642850ec
1 // Copyright (c) 2012 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 ASH_TEST_DISPLAY_MANAGER_TEST_API_H_
6 #define ASH_TEST_DISPLAY_MANAGER_TEST_API_H_
8 #include <string>
9 #include <vector>
11 #include "base/basictypes.h"
12 #include "ui/display/types/display_constants.h"
14 namespace ash {
15 class DisplayManager;
17 namespace test {
19 class DisplayManagerTestApi {
20 public:
21 explicit DisplayManagerTestApi(DisplayManager* display_manager);
22 virtual ~DisplayManagerTestApi();
24 // Update the display configuration as given in |display_specs|. The format of
25 // |display_spec| is a list of comma separated spec for each displays. Please
26 // refer to the comment in |ash::DisplayInfo::CreateFromSpec| for the format
27 // of the display spec.
28 void UpdateDisplay(const std::string& display_specs);
30 // Set the 1st display as an internal display and returns the display Id for
31 // the internal display.
32 int64 SetFirstDisplayAsInternalDisplay();
34 // Don't update the display when the root window's size was changed.
35 void DisableChangeDisplayUponHostResize();
37 // Sets the available color profiles for |display_id|.
38 void SetAvailableColorProfiles(
39 int64 display_id,
40 const std::vector<ui::ColorCalibrationProfile>& profiles);
42 private:
43 DisplayManager* display_manager_; // not owned
45 DISALLOW_COPY_AND_ASSIGN(DisplayManagerTestApi);
48 } // namespace test
49 } // namespace ash
51 #endif // ASH_TEST_DISPLAY_MANAGER_TEST_API_H_