| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #import "chrome/browser/ui/cocoa/intents/web_intent_view_controller.h" | 5 #import "chrome/browser/ui/cocoa/intents/web_intent_view_controller.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/ui/intents/web_intent_picker.h" | 8 #include "chrome/browser/ui/intents/web_intent_picker.h" |
| 9 #include "chrome/browser/ui/constrained_window_constants.h" | 9 #include "chrome/browser/ui/constrained_window_constants.h" |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 - (NSSize)minimumSizeForInnerWidth:(CGFloat)innerWidth { | 47 - (NSSize)minimumSizeForInnerWidth:(CGFloat)innerWidth { |
| 48 NOTREACHED(); | 48 NOTREACHED(); |
| 49 return NSZeroSize; | 49 return NSZeroSize; |
| 50 } | 50 } |
| 51 | 51 |
| 52 - (void)layoutSubviewsWithinFrame:(NSRect)innerFrame { | 52 - (void)layoutSubviewsWithinFrame:(NSRect)innerFrame { |
| 53 NOTREACHED(); | 53 NOTREACHED(); |
| 54 } | 54 } |
| 55 | 55 |
| 56 - (void)viewRemovedFromSuperview { |
| 57 } |
| 58 |
| 56 @end | 59 @end |
| OLD | NEW |