shell_content_main.h revision eb525c5499e34cc9c4b825d6d9e75bb07cc06ace
1// Copyright 2013 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#ifndef CONTENT_SHELL_APP_SHELL_CONTENT_MAIN_H_
6#define CONTENT_SHELL_APP_SHELL_CONTENT_MAIN_H_
7
8#include "base/basictypes.h"
9
10extern "C" {
11__attribute__((visibility("default")))
12int ContentMain(int argc,
13                const char** argv);
14}  // extern "C"
15
16#endif  // CONTENT_SHELL_APP_SHELL_CONTENT_MAIN_H_
17