| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_BROWSER_ACTIONS_CONTAINER_VIEW_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_EXTENSIONS_BROWSER_ACTIONS_CONTAINER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_BROWSER_ACTIONS_CONTAINER_VIEW_ | 6 #define CHROME_BROWSER_UI_COCOA_EXTENSIONS_BROWSER_ACTIONS_CONTAINER_VIEW_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "base/mac/scoped_nsobject.h" | 12 #include "base/mac/scoped_nsobject.h" |
| 13 | 13 |
| 14 namespace ui { | 14 namespace ui { |
| 15 struct NinePartImageIds; | 15 struct NinePartImageIds; |
| 16 } | 16 } |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 132 |
| 133 @property(nonatomic) BOOL canDragLeft; | 133 @property(nonatomic) BOOL canDragLeft; |
| 134 @property(nonatomic) BOOL canDragRight; | 134 @property(nonatomic) BOOL canDragRight; |
| 135 @property(nonatomic) BOOL grippyPinned; | 135 @property(nonatomic) BOOL grippyPinned; |
| 136 @property(nonatomic) CGFloat maxDesiredWidth; | 136 @property(nonatomic) CGFloat maxDesiredWidth; |
| 137 @property(readonly, nonatomic) BOOL userIsResizing; | 137 @property(readonly, nonatomic) BOOL userIsResizing; |
| 138 @property(nonatomic) BrowserActionsContainerViewSizeDelegate* delegate; | 138 @property(nonatomic) BrowserActionsContainerViewSizeDelegate* delegate; |
| 139 | 139 |
| 140 @end | 140 @end |
| 141 | 141 |
| 142 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_BROWSER_ACTIONS_CONTAINER_VIEW_ | 142 #endif // CHROME_BROWSER_UI_COCOA_EXTENSIONS_BROWSER_ACTIONS_CONTAINER_VIEW_H_ |
| OLD | NEW |