chromium/chrome/browser/ui/tabs/organization/trigger_observer.h

// 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_UI_TABS_ORGANIZATION_TRIGGER_OBSERVER_H_
#define CHROME_BROWSER_UI_TABS_ORGANIZATION_TRIGGER_OBSERVER_H_

#include <memory>
#include <unordered_map>

#include "base/functional/callback.h"
#include "chrome/browser/ui/browser_list_observer.h"
#include "chrome/browser/ui/tabs/organization/trigger.h"
#include "chrome/browser/ui/tabs/tab_strip_model_observer.h"

class TabStripModel;
class TabOrganizationTrigger;
namespace content {
class BrowserContext;
}

// Gets inputs for triggering, runs triggering logic when anything changes.
class TabOrganizationTriggerObserver : public BrowserListObserver,
                                       TabStripModelObserver {};

#endif  // CHROME_BROWSER_UI_TABS_ORGANIZATION_TRIGGER_OBSERVER_H_