blob: d56ca92cd8309bc5a26b09e60ec305eb4819f5e3 (
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
26
|
// Copyright (c) 2009 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 <windows.h>
#include <DbgHelp.h>
#include <string>
#include "chrome_frame/chrome_launcher.h"
#include "chrome_frame/crash_server_init.h"
int APIENTRY wWinMain(HINSTANCE, HINSTANCE, wchar_t*, int) {
const wchar_t* cmd_line = ::GetCommandLine();
google_breakpad::scoped_ptr<google_breakpad::ExceptionHandler> breakpad(
InitializeCrashReporting(cmd_line));
UINT exit_code = ERROR_FILE_NOT_FOUND;
if (chrome_launcher::SanitizeAndLaunchChrome(::GetCommandLine())) {
exit_code = ERROR_SUCCESS;
}
return exit_code;
}
|