chromium/chrome/browser/chromeos/mahi/test/mock_mahi_web_contents_manager.h

// Copyright 2024 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_CHROMEOS_MAHI_TEST_MOCK_MAHI_WEB_CONTENTS_MANAGER_H_
#define CHROME_BROWSER_CHROMEOS_MAHI_TEST_MOCK_MAHI_WEB_CONTENTS_MANAGER_H_

#include "chrome/browser/chromeos/mahi/mahi_web_contents_manager.h"
#include "testing/gmock/include/gmock/gmock.h"

namespace mahi {

class MockMahiWebContentsManager : public MahiWebContentsManager {
 public:
  MockMahiWebContentsManager();
  ~MockMahiWebContentsManager() override;

  MOCK_METHOD1(OnFocusedPageLoadComplete, void(content::WebContents*));
};

}  // namespace mahi

#endif  // CHROME_BROWSER_CHROMEOS_MAHI_TEST_MOCK_MAHI_WEB_CONTENTS_MANAGER_H_