chromium/chrome/browser/ui/omnibox/omnibox_tab_helper.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_OMNIBOX_OMNIBOX_TAB_HELPER_H_
#define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_TAB_HELPER_H_

#include "base/observer_list.h"
#include "base/observer_list_types.h"
#include "components/omnibox/common/omnibox_focus_state.h"
#include "content/public/browser/web_contents_user_data.h"

namespace content {
class WebContents;
}

// Serves as a bridge between omnibox and other UIs. Allows registration of
// observers to listen for omnibox updates.
class OmniboxTabHelper : public content::WebContentsUserData<OmniboxTabHelper> {};

#endif  // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_TAB_HELPER_H_