Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Side by Side Diff: chrome/browser/cocoa/side_tabs_toolbar_controller.h

Issue 2475002: Initial cut at scaffolding for mac sidetabs. No visible changes to browser wi... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 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_COCOA_SIDE_TABS_TOOLBAR_CONTROLLER_H_
6 #define CHROME_BROWSER_COCOA_SIDE_TABS_TOOLBAR_CONTROLLER_H_
7
8 #import <Cocoa/Cocoa.h>
9
10 #import "chrome/browser/cocoa/toolbar_controller.h"
11
12 // A toolbar controller for when there are side tabs.
13 // TODO(pinkerton): needs to be fleshed out much more and refactored.
14
15 @interface SideTabsToolbarController : ToolbarController {
rohitrao (ping after 24h) 2010/06/02 13:45:56 I don't know how much of the ToolbarController cod
16 @private
17 IBOutlet NSButton* starButton_;
18 IBOutlet NSTextField* title_;
19 IBOutlet NSProgressIndicator* loadingSpinner_;
20 }
21
22 @end
23
24 #endif // CHROME_BROWSER_COCOA_SIDE_TABS_TOOLBAR_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698