blob: f59234db99ab977228e400d1a8f47edba1d865fd [file] [log] [blame]
// Copyright 2021 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/first_run/welcome_screen_view_controller.h"
#import "ios/chrome/browser/ui/first_run/first_run_screen_delegate.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@implementation WelcomeScreenViewController
@dynamic delegate;
- (void)viewDidLoad {
// TODO(crbug.com/1189815): set strings and images to the view.
self.titleText = @"Test Welcome Screen";
self.primaryActionString = @"Test Continue Button";
[super viewDidLoad];
}
@end