chromium/components/omnibox/browser/omnibox_popup_view.cc

// 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.

#include "components/omnibox/browser/omnibox_popup_view.h"

#include "base/callback_list.h"
#include "base/functional/callback_forward.h"
#include "components/omnibox/browser/omnibox_controller.h"

OmniboxPopupView::OmniboxPopupView(OmniboxController* controller)
    :{}

OmniboxPopupView::~OmniboxPopupView() = default;

OmniboxEditModel* OmniboxPopupView::model() {}

const OmniboxEditModel* OmniboxPopupView::model() const {}

OmniboxController* OmniboxPopupView::controller() {}

const OmniboxController* OmniboxPopupView::controller() const {}

base::CallbackListSubscription OmniboxPopupView::AddOpenListener(
    base::RepeatingClosure callback) {}

void OmniboxPopupView::NotifyOpenListeners() {}