зеркало из https://github.com/electron/electron.git
18 строки
423 B
C++
18 строки
423 B
C++
// Copyright (c) 2018 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_COMMON_HEAP_SNAPSHOT_H_
|
|
#define SHELL_COMMON_HEAP_SNAPSHOT_H_
|
|
|
|
#include "base/files/file.h"
|
|
#include "v8/include/v8.h"
|
|
|
|
namespace electron {
|
|
|
|
bool TakeHeapSnapshot(v8::Isolate* isolate, base::File* file);
|
|
|
|
} // namespace electron
|
|
|
|
#endif // SHELL_COMMON_HEAP_SNAPSHOT_H_
|