blob: b47dda5a7af062e28023a79466a4b27bf136b66b [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/shared/ui/util/named_guide_util.h"
#import "ios/chrome/browser/shared/ui/util/named_guide.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
void AddNamedGuidesToView(NSArray<GuideName*>* names, UIView* view) {
for (GuideName* name in names) {
[view addLayoutGuide:[[NamedGuide alloc] initWithName:name]];
}
}