blob: c382ff7feb323c7889aaf4c8d60452851f3f0b73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright (c) 2009 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_COCOA_TOOLBAR_BUTTON_CELL_H_
#define CHROME_BROWSER_COCOA_TOOLBAR_BUTTON_CELL_H_
#import <Cocoa/Cocoa.h>
#import "chrome/browser/cocoa/clickhold_button_cell.h"
// A button cell for the toolbar.
// TODO(jrg): Why have a class at all when the base class does it all?
// I anticipate making changes for extensions. Themes may also
// require changes. I don't yet know if those will be common across
// the toolbar and bookmark bar or not. The initial CL which made
// this empty was the use of the base class for both toolbar and
// bookmark bar button cells. It seems wasteful to remove the files
// then add them back in soon after.
// TODO(jrg): If no differences come up, remove this file and use
// the base class explicitly for both the toolbar and bookmark bar.
@interface ToolbarButtonCell : ClickHoldButtonCell {
}
@end
#endif // CHROME_BROWSER_COCOA_TOOLBAR_BUTTON_CELL_H_
|