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

Side by Side Diff: chrome/browser/ui/cocoa/extensions/browser_actions_container_view.h

Issue 2637403002: Fix header guards in //chrome (Closed)
Patch Set: Created 3 years, 11 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
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698