blob: 763a020fb55bddb751a3b82545c4e631ecd9b009 [file] [log] [blame]
// Copyright 2023 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_ASH_ACCESSIBILITY_ACCESSIBILITY_FEATURE_BROWSERTEST_H_
#define CHROME_BROWSER_ASH_ACCESSIBILITY_ACCESSIBILITY_FEATURE_BROWSERTEST_H_
#include <memory>
#include "chrome/test/base/in_process_browser_test.h"
class Profile;
namespace ash {
// Class that can be used for Accessibility feature browsertests.
class AccessibilityFeatureBrowserTest : public InProcessBrowserTest {
public:
AccessibilityFeatureBrowserTest();
AccessibilityFeatureBrowserTest(const AccessibilityFeatureBrowserTest&) =
delete;
AccessibilityFeatureBrowserTest& operator=(
const AccessibilityFeatureBrowserTest&) = delete;
~AccessibilityFeatureBrowserTest() override;
// Navigates to the given URL. Does not wait for the load to
// complete.
void NavigateToUrl(const GURL& url);
// Returns the profile.
Profile* GetProfile() const;
};
} // namespace ash
#endif // CHROME_BROWSER_ASH_ACCESSIBILITY_ACCESSIBILITY_FEATURE_BROWSERTEST_H_