root/media/video/mock_video_decode_accelerator.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. DeleteThis

// Copyright 2013 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/video/mock_video_decode_accelerator.h"

namespace media {

using ::testing::Invoke;

MockVideoDecodeAccelerator::MockVideoDecodeAccelerator() {
  // Delete |this| when Destroy() is called.
  ON_CALL(*this, Destroy())
      .WillByDefault(Invoke(this, &MockVideoDecodeAccelerator::DeleteThis));
}

MockVideoDecodeAccelerator::~MockVideoDecodeAccelerator() {}

void MockVideoDecodeAccelerator::DeleteThis() { delete this; }

}  // namespace media

/* [<][>][^][v][top][bottom][index][help] */