| // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef POWER_MANAGER_MOCK_VIDEO_DETECTOR_H_ |
| #define POWER_MANAGER_MOCK_VIDEO_DETECTOR_H_ |
| |
| #include <gmock/gmock.h> |
| |
| #include "power_manager/video_detector_interface.h" |
| |
| namespace power_manager { |
| |
| class MockVideoDetector : public VideoDetectorInterface { |
| public: |
| MOCK_METHOD3(GetVideoActivity, bool(int64, int64*, bool*)); |
| }; |
| |
| } // namespace power_manager |
| |
| #endif // POWER_MANAGER_MOCK_VIDEO_DETECTOR_H_ |