#include "content/public/browser/web_contents_delegate.h"
#include <memory>
#include "base/compiler_specific.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/test/test_browser_context.h"
#include "content/test/test_render_view_host.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
class MockWebContentsDelegate : public WebContentsDelegate { … };
class WebContentsDelegateTest : public RenderViewHostImplTestHarness { … };
TEST_F(WebContentsDelegateTest, UnregisterInDestructor) { … }
}