blob: c97c9344bfac88e5da21ffb1dad466933e6035ee [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/gpu/android/mock_promotion_hint_aggregator.h"
using testing::_;
using testing::Return;
namespace media {
MockPromotionHintAggregator::MockPromotionHintAggregator() {
SetIsSafeToPromote(false);
}
MockPromotionHintAggregator::~MockPromotionHintAggregator() {}
void MockPromotionHintAggregator::SetIsSafeToPromote(bool is_safe) {
ON_CALL(*this, IsSafeToPromote()).WillByDefault(Return(is_safe));
}
} // namespace media