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

Unified Diff: ios/chrome/browser/ui/bubble/bubble_view.mm

Issue 2964233002: [ios] BubbleViewController and BubbleView stubs. (Closed)
Patch Set: Add initial values for enums Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/ui/bubble/bubble_view.h ('k') | ios/chrome/browser/ui/bubble/bubble_view_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/bubble/bubble_view.mm
diff --git a/ios/chrome/browser/ui/bubble/bubble_view.mm b/ios/chrome/browser/ui/bubble/bubble_view.mm
new file mode 100644
index 0000000000000000000000000000000000000000..6d820c93c69f981c9f4318c64fc99a6872146ab5
--- /dev/null
+++ b/ios/chrome/browser/ui/bubble/bubble_view.mm
@@ -0,0 +1,37 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#import "ios/chrome/browser/ui/bubble/bubble_view.h"
+
+#include "base/logging.h"
+
+#if !defined(__has_feature) || !__has_feature(objc_arc)
+#error "This file requires ARC support."
+#endif
+
+@interface BubbleView ()
+// Label containing the text displayed on the bubble.
+@property(nonatomic, weak) UILabel* label;
+@end
+
+@implementation BubbleView
+
+@synthesize label = _label;
+
+- (instancetype)initWithText:(NSString*)text
+ direction:(BubbleArrowDirection)arrowDirection
+ alignment:(BubbleAlignment)alignment {
+ self = [super initWithFrame:CGRectZero];
+ return self;
+}
+
+#pragma mark - UIView overrides
+
+// Override sizeThatFits to return the bubble's optimal size.
+- (CGSize)sizeThatFits:(CGSize)size {
+ NOTIMPLEMENTED();
+ return size;
+}
+
+@end
« no previous file with comments | « ios/chrome/browser/ui/bubble/bubble_view.h ('k') | ios/chrome/browser/ui/bubble/bubble_view_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698