summaryrefslogtreecommitdiff
path: root/chromium/base/linux_util.h
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-08 14:30:41 +0200
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-12 13:49:54 +0200
commitab0a50979b9eb4dfa3320eff7e187e41efedf7a9 (patch)
tree498dfb8a97ff3361a9f7486863a52bb4e26bb898 /chromium/base/linux_util.h
parent4ce69f7403811819800e7c5ae1318b2647e778d1 (diff)
downloadqtwebengine-chromium-ab0a50979b9eb4dfa3320eff7e187e41efedf7a9.tar.gz
Update Chromium to beta version 37.0.2062.68
Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'chromium/base/linux_util.h')
-rw-r--r--chromium/base/linux_util.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/chromium/base/linux_util.h b/chromium/base/linux_util.h
index b9ba56dfc97..83523df831d 100644
--- a/chromium/base/linux_util.h
+++ b/chromium/base/linux_util.h
@@ -14,8 +14,6 @@
namespace base {
-BASE_EXPORT extern const char kFindInodeSwitch[];
-
// This is declared here so the crash reporter can access the memory directly
// in compromised context without going through the standard library.
BASE_EXPORT extern char g_linux_distro[];
@@ -26,13 +24,6 @@ BASE_EXPORT std::string GetLinuxDistro();
// Set the Linux Distro string.
BASE_EXPORT void SetLinuxDistro(const std::string& distro);
-// Return the inode number for the UNIX domain socket |fd|.
-BASE_EXPORT bool FileDescriptorGetInode(ino_t* inode_out, int fd);
-
-// Find the process which holds the given socket, named by inode number. If
-// multiple processes hold the socket, this function returns false.
-BASE_EXPORT bool FindProcessHoldingSocket(pid_t* pid_out, ino_t socket_inode);
-
// For a given process |pid|, look through all its threads and find the first
// thread with /proc/[pid]/task/[thread_id]/syscall whose first N bytes matches
// |expected_data|, where N is the length of |expected_data|.