blob: 5509f368e4b5cf61f94273b17197c98bf208c9fc [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_SCOPED_TABBED_BROWSER_DISPLAYER_H_
#define CHROME_BROWSER_UI_SCOPED_TABBED_BROWSER_DISPLAYER_H_
#include "base/memory/raw_ptr.h"
class Browser;
class Profile;
namespace chrome {
// This class finds the last active tabbed browser matching |profile|. If there
// is no tabbed browser and it is possible to create one, a new non visible
// browser is created, taking |should_trigger_session_restore| into account.
// ScopedTabbedBrowserDisplayer ensures that the browser is made visible and is
// activated by the time that ScopedTabbedBrowserDisplayer goes out of scope.
class ScopedTabbedBrowserDisplayer {
public:
explicit ScopedTabbedBrowserDisplayer(
Profile* profile,
bool should_trigger_session_restore = false);
ScopedTabbedBrowserDisplayer(const ScopedTabbedBrowserDisplayer&) = delete;
ScopedTabbedBrowserDisplayer& operator=(const ScopedTabbedBrowserDisplayer&) =
delete;
~ScopedTabbedBrowserDisplayer();
Browser* browser() { return browser_; }
private:
raw_ptr<Browser> browser_;
};
} // namespace chrome
#endif // CHROME_BROWSER_UI_SCOPED_TABBED_BROWSER_DISPLAYER_H_