[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / website_settings / split_block_button.h
blobddb32879d36e00d59b231ca698fcc049c4f6929a
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 "grit/generated_resources.h"
12 #include "ui/base/models/simple_menu_model.h"
14 @class SplitButtonPopUpCell;
15 @class SplitButtonTitleCell;
17 // Block ('deny') button for the permissions bubble. Subclassed from
18 // ConstrainedWindowButton, so that it shares styling, but contains two cells
19 // instead of just one. The left cell behaves as a normal button, and when
20 // clicked, calls the button's |action| on its |target|. The right cell behaves
21 // as a NSPopUpButtonCell, and implements a single-item menu.
22 @interface SplitBlockButton : ConstrainedWindowButton {
23 @private
24 base::scoped_nsobject<SplitButtonTitleCell> leftCell_;
25 base::scoped_nsobject<SplitButtonPopUpCell> rightCell_;
27 ui::ScopedCrTrackingArea leftTrackingArea_;
28 ui::ScopedCrTrackingArea rightTrackingArea_;
31 // Designated initializer.
32 - (id)initWithMenuDelegate:(ui::SimpleMenuModel::Delegate*)menuDelegate;
34 @end
36 #endif // CHROME_BROWSER_UI_COCOA_WEBSITE_SETTINGS_SPLIT_BLOCK_BUTTON_