blob: dc605064023d638b877cc6e75c7194ee6c6a7027 [file] [log] [blame]
// Copyright 2020 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_PROFILE_PICKER_H_
#define CHROME_BROWSER_UI_PROFILE_PICKER_H_
class ProfilePicker {
public:
// Shows the Profile picker or re-activates an existing one.
static void Show();
// Hides the profile picker.
static void Hide();
private:
DISALLOW_COPY_AND_ASSIGN(ProfilePicker);
};
#endif // CHROME_BROWSER_UI_PROFILE_PICKER_H_