Revert of Remove OneClickSigninHelper since it is no longer used. (patchset #5 id...
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / website_settings / split_block_button.h
blobfa723cd34fc69436e2d8b6632a8b8db9177c896a
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.
5 #ifndef CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_SPLIT_BLOCK_BUTTON_
6 #define CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_SPLIT_BLOCK_BUTTON_
8 #import <Cocoa/Cocoa.h>
10 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_button.h"
11 #include "ui/base/models/simple_menu_model.h"
13 @class SplitButtonPopUpCell;
14 @class SplitButtonTitleCell;
16 // Block ('deny') button for the permissions bubble. Subclassed from
17 // ConstrainedWindowButton, so that it shares styling, but contains two cells
18 // instead of just one. The left cell behaves as a normal button, and when
19 // clicked, calls the button's |action| on its |target|. The right cell behaves
20 // as a NSPopUpButtonCell, and implements a single-item menu.
21 @interface SplitBlockButton : ConstrainedWindowButton {
22 @private
23 base::scoped_nsobject<SplitButtonTitleCell> leftCell_;
24 base::scoped_nsobject<SplitButtonPopUpCell> rightCell_;
26 ui::ScopedCrTrackingArea leftTrackingArea_;
27 ui::ScopedCrTrackingArea rightTrackingArea_;
30 // Designated initializer.
31 - (id)initWithMenuDelegate:(ui::SimpleMenuModel::Delegate*)menuDelegate;
33 @end
35 #endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_SPLIT_BLOCK_BUTTON_