diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-02-13 10:55:42 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-03-05 13:33:38 +0000 |
commit | 248b70b82a40964d5594eb04feca0fa36716185d (patch) | |
tree | 44e31d9dd0ac2cb79f48633eefbc5496e013c347 /chromium/chrome/common/process_singleton_lock_posix.h | |
parent | cabfcdd1db482729ded525feae56911a99792773 (diff) | |
download | qtwebengine-chromium-248b70b82a40964d5594eb04feca0fa36716185d.tar.gz |
BASELINE: Update Chromium to 79.0.3945.147
And new simplified snapshot filter
Change-Id: I7c692bedd5b3833f05565bd6f6939115350b233a
Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/chrome/common/process_singleton_lock_posix.h')
-rw-r--r-- | chromium/chrome/common/process_singleton_lock_posix.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/chrome/common/process_singleton_lock_posix.h b/chromium/chrome/common/process_singleton_lock_posix.h new file mode 100644 index 00000000000..58584d9950c --- /dev/null +++ b/chromium/chrome/common/process_singleton_lock_posix.h @@ -0,0 +1,20 @@ +// Copyright 2019 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_COMMON_PROCESS_SINGLETON_LOCK_POSIX_H_ +#define CHROME_COMMON_PROCESS_SINGLETON_LOCK_POSIX_H_ + +#include <string> + +#include "base/files/file_path.h" + +// Extract the hostname and pid from the lock symlink. Returns true if the lock +// existed. See ProcessSingleton for additional details. +bool ParseProcessSingletonLock(const base::FilePath& path, + std::string* hostname, + int* pid); + +extern const char kProcessSingletonLockDelimiter; + +#endif // CHROME_COMMON_PROCESS_SINGLETON_LOCK_POSIX_H_ |