1 /* 2 * Copyright 2019 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #pragma once 18 19 #include <compositionengine/Display.h> 20 #include <compositionengine/DisplayColorProfileCreationArgs.h> 21 #include <compositionengine/RenderSurfaceCreationArgs.h> 22 #include <compositionengine/mock/Output.h> 23 #include <gmock/gmock.h> 24 #include <system/window.h> 25 #include <ui/DisplayIdentification.h> 26 27 namespace android::compositionengine::mock { 28 29 class Display : public compositionengine::mock::Output, public compositionengine::Display { 30 public: 31 Display(); 32 virtual ~Display(); 33 34 MOCK_CONST_METHOD0(getId, DisplayId()); 35 MOCK_CONST_METHOD0(isSecure, bool()); 36 MOCK_METHOD1(setSecure, void(bool)); 37 MOCK_CONST_METHOD0(isVirtual, bool()); 38 MOCK_CONST_METHOD0(getPreferredBootHwcConfigId, int32_t()); 39 40 MOCK_METHOD0(disconnect, void()); 41 42 MOCK_METHOD1(createDisplayColorProfile, void(const DisplayColorProfileCreationArgs&)); 43 MOCK_METHOD1(createRenderSurface, void(const RenderSurfaceCreationArgs&)); 44 MOCK_METHOD1(createClientCompositionCache, void(uint32_t)); 45 MOCK_METHOD1(applyDisplayBrightness, void(const bool)); 46 MOCK_METHOD1(setPredictCompositionStrategy, void(bool)); 47 }; 48 49 } // namespace android::compositionengine::mock 50