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

Side by Side Diff: ios/chrome/browser/ui/tabs/tab_strip_view.h

Issue 2942913002: [ObjC ARC] Converts ios/chrome/browser/ui/tabs:tabs to ARC. (Closed)
Patch Set: comments Created 3 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 IOS_CHROME_BROWSER_UI_TABS_TAB_STRIP_VIEW_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_TABS_TAB_STRIP_VIEW_H_
6 #define IOS_CHROME_BROWSER_UI_TABS_TAB_STRIP_VIEW_H_ 6 #define IOS_CHROME_BROWSER_UI_TABS_TAB_STRIP_VIEW_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 // Notification sent by the tab strip when its frame changes. 10 // Notification sent by the tab strip when its frame changes.
(...skipping 10 matching lines...) Expand all
21 // TabStripView does not perform any other subview layout. 21 // TabStripView does not perform any other subview layout.
22 - (void)layoutTabStripSubviews; 22 - (void)layoutTabStripSubviews;
23 // Called from UIView |-traitCollectionDidChange:|. 23 // Called from UIView |-traitCollectionDidChange:|.
24 - (void)traitCollectionDidChange:(UITraitCollection*)previousTraitCollection; 24 - (void)traitCollectionDidChange:(UITraitCollection*)previousTraitCollection;
25 @end 25 @end
26 26
27 // View class for the tabstrip. Contains one TabView per open tab and manages 27 // View class for the tabstrip. Contains one TabView per open tab and manages
28 // tab overflow behavior. 28 // tab overflow behavior.
29 @interface TabStripView : UIScrollView { 29 @interface TabStripView : UIScrollView {
30 @private 30 @private
31 id<TabStripViewLayoutDelegate> layoutDelegate_; 31 id<TabStripViewLayoutDelegate> __weak layoutDelegate_;
32 } 32 }
33 33
34 @property(nonatomic, readwrite, assign) id<TabStripViewLayoutDelegate> 34 @property(nonatomic, readwrite, weak) id<TabStripViewLayoutDelegate>
35 layoutDelegate; 35 layoutDelegate;
36 36
37 @end 37 @end
38 38
39 #endif // IOS_CHROME_BROWSER_UI_TABS_TAB_STRIP_VIEW_H_ 39 #endif // IOS_CHROME_BROWSER_UI_TABS_TAB_STRIP_VIEW_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/tabs/tab_strip_controller.mm ('k') | ios/chrome/browser/ui/tabs/tab_strip_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698