| OLD | NEW |
| 1 #import "chrome/browser/ui/cocoa/intents/web_intent_view_controller.h" | 1 #import "chrome/browser/ui/cocoa/intents/web_intent_view_controller.h" |
| 2 | 2 |
| 3 #include "base/logging.h" | 3 #include "base/logging.h" |
| 4 #include "chrome/browser/ui/intents/web_intent_picker.h" | 4 #include "chrome/browser/ui/intents/web_intent_picker.h" |
| 5 #include "chrome/browser/ui/constrained_window_constants.h" | 5 #include "chrome/browser/ui/constrained_window_constants.h" |
| 6 | 6 |
| 7 @implementation WebIntentViewController | 7 @implementation WebIntentViewController |
| 8 | 8 |
| 9 + (NSRect)minimumInnerFrame { | 9 + (NSRect)minimumInnerFrame { |
| 10 NSRect bounds = NSMakeRect(0, 0, WebIntentPicker::kWindowMinWidth, | 10 NSRect bounds = NSMakeRect(0, 0, WebIntentPicker::kWindowMinWidth, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 - (NSSize)minimumSizeForInnerWidth:(CGFloat)innerWidth { | 43 - (NSSize)minimumSizeForInnerWidth:(CGFloat)innerWidth { |
| 44 NOTREACHED(); | 44 NOTREACHED(); |
| 45 return NSZeroSize; | 45 return NSZeroSize; |
| 46 } | 46 } |
| 47 | 47 |
| 48 - (void)layoutSubviewsWithinFrame:(NSRect)innerFrame { | 48 - (void)layoutSubviewsWithinFrame:(NSRect)innerFrame { |
| 49 NOTREACHED(); | 49 NOTREACHED(); |
| 50 } | 50 } |
| 51 | 51 |
| 52 - (void)viewRemovedFromSuperview { |
| 53 } |
| 54 |
| 52 @end | 55 @end |
| OLD | NEW |