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

Side by Side Diff: chrome/browser/ui/cocoa/intents/web_intent_view_controller.mm

Issue 11230023: Web Intents Mac: Add view animation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698