OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #import "chrome/browser/ui/cocoa/toolbar/toolbar_view.h" | 5 #import "chrome/browser/ui/cocoa/toolbar/toolbar_view_cocoa.h" |
6 | 6 |
7 #import "chrome/browser/ui/cocoa/themed_window.h" | 7 #import "chrome/browser/ui/cocoa/themed_window.h" |
8 #import "chrome/browser/ui/cocoa/view_id_util.h" | 8 #import "chrome/browser/ui/cocoa/view_id_util.h" |
9 #import "ui/base/cocoa/nsgraphics_context_additions.h" | 9 #import "ui/base/cocoa/nsgraphics_context_additions.h" |
10 | 10 |
11 @implementation ToolbarView | 11 @implementation ToolbarView |
12 | 12 |
13 @synthesize dividerOpacity = dividerOpacity_; | 13 @synthesize dividerOpacity = dividerOpacity_; |
14 | 14 |
15 // Prevent mouse down events from moving the parent window around. | 15 // Prevent mouse down events from moving the parent window around. |
(...skipping 26 matching lines...) Expand all Loading... |
42 | 42 |
43 - (ViewID)viewID { | 43 - (ViewID)viewID { |
44 return VIEW_ID_TOOLBAR; | 44 return VIEW_ID_TOOLBAR; |
45 } | 45 } |
46 | 46 |
47 - (BOOL)isOpaque { | 47 - (BOOL)isOpaque { |
48 return YES; | 48 return YES; |
49 } | 49 } |
50 | 50 |
51 @end | 51 @end |
OLD | NEW |