OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_APP_CONTENT_MAIN_H_ | 5 #ifndef CONTENT_PUBLIC_APP_CONTENT_MAIN_H_ |
6 #define CONTENT_APP_CONTENT_MAIN_H_ | 6 #define CONTENT_PUBLIC_APP_CONTENT_MAIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 | 11 |
12 #if defined(OS_WIN) | 12 #if defined(OS_WIN) |
13 #include <windows.h> | 13 #include <windows.h> |
14 #endif | 14 #endif |
15 | 15 |
16 namespace sandbox { | 16 namespace sandbox { |
(...skipping 16 matching lines...) Expand all Loading... |
33 sandbox::SandboxInterfaceInfo* sandbox_info, | 33 sandbox::SandboxInterfaceInfo* sandbox_info, |
34 ContentMainDelegate* delegate); | 34 ContentMainDelegate* delegate); |
35 #else | 35 #else |
36 CONTENT_EXPORT int ContentMain(int argc, | 36 CONTENT_EXPORT int ContentMain(int argc, |
37 const char** argv, | 37 const char** argv, |
38 ContentMainDelegate* delegate); | 38 ContentMainDelegate* delegate); |
39 #endif | 39 #endif |
40 | 40 |
41 } // namespace content | 41 } // namespace content |
42 | 42 |
43 #endif // CONTENT_APP_CONTENT_MAIN_H_ | 43 #endif // CONTENT_PUBLIC_APP_CONTENT_MAIN_H_ |
OLD | NEW |