| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // ====== New Architecture ===== | 5 // ====== New Architecture ===== |
| 6 // = This code is only used in the new iOS Chrome architecture. = | 6 // = This code is only used in the new iOS Chrome architecture. = |
| 7 // ============================================================================ | 7 // ============================================================================ |
| 8 | 8 |
| 9 #import "ios/chrome/browser/ui/presenters/menu_presentation_controller.h" | 9 #import "ios/clean/chrome/browser/ui/presenters/menu_presentation_controller.h" |
| 10 | 10 |
| 11 #import <QuartzCore/QuartzCore.h> | 11 #import <QuartzCore/QuartzCore.h> |
| 12 | 12 |
| 13 #include "ios/chrome/browser/ui/presenters/menu_presentation_delegate.h" | 13 #include "ios/clean/chrome/browser/ui/presenters/menu_presentation_delegate.h" |
| 14 | 14 |
| 15 #if !defined(__has_feature) || !__has_feature(objc_arc) | 15 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 16 #error "This file requires ARC support." | 16 #error "This file requires ARC support." |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 @interface MenuPresentationController () | 19 @interface MenuPresentationController () |
| 20 @property(nonatomic, weak) id<MenuPresentationDelegate> presentationDelegate; | 20 @property(nonatomic, weak) id<MenuPresentationDelegate> presentationDelegate; |
| 21 @property(nonatomic, assign) CGRect presentationFrame; | 21 @property(nonatomic, assign) CGRect presentationFrame; |
| 22 @end | 22 @end |
| 23 | 23 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 // presenting view controller may not have been determined by UIKit yet. | 56 // presenting view controller may not have been determined by UIKit yet. |
| 57 - (void)updatePresentationDelegate { | 57 - (void)updatePresentationDelegate { |
| 58 if ([self.presentingViewController | 58 if ([self.presentingViewController |
| 59 conformsToProtocol:@protocol(MenuPresentationDelegate)]) { | 59 conformsToProtocol:@protocol(MenuPresentationDelegate)]) { |
| 60 self.presentationDelegate = static_cast<id<MenuPresentationDelegate>>( | 60 self.presentationDelegate = static_cast<id<MenuPresentationDelegate>>( |
| 61 self.presentingViewController); | 61 self.presentingViewController); |
| 62 } | 62 } |
| 63 } | 63 } |
| 64 | 64 |
| 65 @end | 65 @end |
| OLD | NEW |