mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-28 15:50:26 +08:00
20869d9468
I've heard/lived enough horror stories about AV, outbound-blocking firewalls, etc. on Windows, that I think the best approach is to have chrome.exe embed the majority of crashpad_handler and jump to it as early as possible when running in that mode. So, move most of crashpad_handler into a static_library with just main() in the executable target. R=mark@chromium.org BUG=chromium:546288, crashpad:27 Review URL: https://codereview.chromium.org/1416873016 .
29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
// Copyright 2015 The Crashpad Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef CRASHPAD_HANDLER_HANDLER_MAIN_H_
|
|
#define CRASHPAD_HANDLER_HANDLER_MAIN_H_
|
|
|
|
namespace crashpad {
|
|
|
|
//! \brief The `main()` of the `crashpad_handler` binary.
|
|
//!
|
|
//! This is exposed so that `crashpad_handler` can be embedded into another
|
|
//! binary, but called and used as if it were a standalone executable.
|
|
int HandlerMain(int argc, char* argv[]);
|
|
|
|
} // namespace crashpad
|
|
|
|
#endif // CRASHPAD_HANDLER_HANDLER_MAIN_H_
|