We started redesigning GpuMemoryBuffer interface to handle multiple buffers [0].
[chromium-blink-merge.git] / content / common / sandbox_linux / sandbox_debug_handling_linux.h
blob248b54b43e7daa8d5df29088a85912aaf8637b36
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_COMMON_SANDBOX_LINUX_SANDBOX_DEBUG_HANDLING_LINUX_H_
6 #define CONTENT_COMMON_SANDBOX_LINUX_SANDBOX_DEBUG_HANDLING_LINUX_H_
8 #include "base/macros.h"
10 namespace content {
12 class SandboxDebugHandling {
13 public:
14 // Depending on the command line, set the current process as
15 // non dumpable. Also set any signal handlers for sandbox
16 // debugging.
17 static bool SetDumpableStatusAndHandlers();
19 private:
20 DISALLOW_IMPLICIT_CONSTRUCTORS(SandboxDebugHandling);
23 } // namespace content
25 #endif // CONTENT_COMMON_SANDBOX_LINUX_SANDBOX_DEBUG_HANDLING_LINUX_H_