blob: e55d12ebaafaf76f51b078cd801962cfdc5f72d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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.
#ifndef CHROME_APP_BREAKPAD_LINUX_H_
#define CHROME_APP_BREAKPAD_LINUX_H_
extern void InitCrashReporter();
extern int UploadCrashDump(const char* filename,
const char* crash_url,
unsigned crash_url_length,
const char* guid,
unsigned guid_length);
#endif // CHROME_APP_BREAKPAD_LINUX_H_
|