blob: 18f92589068d8b44655c8299b34b6a01b67e1850 [file] [log] [blame]
// 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 {
public:
ContentBrowserConsistencyChecker();
ContentBrowserConsistencyChecker(const ContentBrowserConsistencyChecker&) =
delete;
ContentBrowserConsistencyChecker& operator=(
const ContentBrowserConsistencyChecker&) = delete;
~ContentBrowserConsistencyChecker();
private:
void OnWebContentsCreated(WebContents* web_contents);
base::CallbackListSubscription creation_subscription_;
};
} // namespace content
#endif // CONTENT_TEST_CONTENT_BROWSER_CONSISTENCY_CHECKER_H_