Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / cocoa / browser / avatar_button_controller.h
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_AVATAR_BUTTON_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_COCOA_BROWSER_AVATAR_BUTTON_CONTROLLER_H_
7
8 #import <AppKit/AppKit.h>
9
10 #import "chrome/browser/ui/cocoa/browser/avatar_base_controller.h"
11
12 class Browser;
13
14 // This view controller manages the button that sits in the top of the
15 // window frame when using multi-profiles, and shows the current profile's
16 // name. Clicking the button will open the profile menu.
17 @interface AvatarButtonController : AvatarBaseController
18
19 // Designated initializer.
20 - (id)initWithBrowser:(Browser*)browser;
21
22 @end
23
24 #endif  // CHROME_BROWSER_UI_COCOA_BROWSER_AVATAR_BUTTON_CONTROLLER_H_