1#!/usr/bin/env python
2#
3# Copyright 2014 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7import sys
8
9from profile_chrome import main
10
11
12if __name__ == '__main__':
13  sys.exit(main.main())
14