chromium/ui/display/test/display_matchers.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/display/test/display_matchers.h"

namespace display {

namespace {

const float kEpsilon =;

// Matcher to check DisplayMode size and refresh rate.
class DisplayModeMatcher
    : public testing::MatcherInterface<const DisplayMode&> {};

}  // namespace

testing::Matcher<const DisplayMode&> IsDisplayMode(int width,
                                                   int height,
                                                   float refresh_rate) {}

}  // namespace display