chromium/content/test/content_browser_consistency_checker.h

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

#ifndef CONTENT_TEST_CONTENT_BROWSER_CONSISTENCY_CHECKER_H_
#define CONTENT_TEST_CONTENT_BROWSER_CONSISTENCY_CHECKER_H_

#include "base/callback_list.h"
#include "base/functional/callback.h"

namespace content {

class WebContents;

// While an instance of this class exists, a bunch of consistency checks are
// enabled to validate the correctness of the browser side of the content layer
// implementation. It's good to enable these in both unit tests and browser
// tests, as a means of detecting bugs in the implementation of the content api.
//
// These checks should typically be enabled by the base class of any test
// framework that would instantiate a WebContents -- ContentBrowserTest::SetUp,
// RenderViewHostTestHarness::SetUp, and so forth. Individual tests won't
// typically need to enable them.
//
// For the nuts and bolts of what the checks enforce, see the implementation.
class ContentBrowserConsistencyChecker {};

}  // namespace content

#endif  // CONTENT_TEST_CONTENT_BROWSER_CONSISTENCY_CHECKER_H_