blob: ae320930a17fab05708b0cbf4ee74594363d9f82 [file] [log] [blame]
// Copyright 2015 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/browser_container_view.h"
#include "base/logging.h"
@implementation BrowserContainerView {
// Weak reference to content view, so old _contentView can be removed from
// superview when new one is added.
__weak UIView* _contentView;
}
- (void)dealloc {
DCHECK(![_contentView superview] || [_contentView superview] == self);
}
- (void)displayContentView:(UIView*)contentView {
DCHECK(![_contentView superview] || [_contentView superview] == self);
[_contentView removeFromSuperview];
_contentView = contentView;
if (contentView) {
[self addSubview:contentView];
}
}
@end