summaryrefslogtreecommitdiffstats
path: root/apps/shell/app/shell_main.cc
blob: c81cfa0e1622dbadb240d9ca5e2d330224def6ff (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2013 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.

#include "apps/shell/app/shell_main_delegate.h"
#include "content/public/app/content_main.h"

int main(int argc, const char** argv) {
  apps::ShellMainDelegate delegate;
  return content::ContentMain(argc, argv, &delegate);
}