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
{
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
;
35 #endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_SPLIT_BLOCK_BUTTON_