summaryrefslogtreecommitdiff
path: root/chromium/media/gpu/android/mock_promotion_hint_aggregator.cc
blob: c97c9344bfac88e5da21ffb1dad466933e6035ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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