blob: fc4e1b9750bca9d78b3bdf7cd0521aa8b6822e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) 2012 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 "content/public/app/content_main.h"
#include "sandbox/src/sandbox_types.h"
#include "ui/views/examples/content_client/examples_main_delegate.h"
#if defined(OS_WIN)
#include "content/public/app/startup_helper_win.h"
#endif
#if defined(OS_WIN)
int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t*, int) {
sandbox::SandboxInterfaceInfo sandbox_info = {0};
content::InitializeSandboxInfo(&sandbox_info);
views::examples::ExamplesMainDelegate delegate;
return content::ContentMain(instance, &sandbox_info, &delegate);
}
#else
int main(int argc, const char** argv) {
views::examples::ExamplesMainDelegate delegate;
return content::ContentMain(argc, argv, &delegate);
}
#endif
|