chromium/chrome/browser/ui/views/profiles/profile_picker_test_base.h

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

#ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_PICKER_TEST_BASE_H_
#define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_PICKER_TEST_BASE_H_

#include "chrome/test/base/in_process_browser_test.h"

namespace content {
class WebContents;
}

namespace views {
class WebView;
class Widget;
}  // namespace views

class GURL;
class ProfilePickerView;

// Mixin adding getters and helper methods to interact with `ProfilePickerView`.
class WithProfilePickerTestHelpers {};

class ProfilePickerTestBase : public InProcessBrowserTest,
                              public WithProfilePickerTestHelpers {};

#endif  // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_PICKER_TEST_BASE_H_