1// Copyright 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#import "ViewController.h"
6
7@interface ViewController ()
8
9@end
10
11@implementation ViewController
12
13- (void)viewDidLoad {
14  [super viewDidLoad];
15}
16
17- (void)didReceiveMemoryWarning {
18  [super didReceiveMemoryWarning];
19}
20
21@end
22