OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CRASH_HANDLER_HOST_LINUXISH_H_ | 5 #ifndef CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_ |
6 #define CHROME_BROWSER_CRASH_HANDLER_HOST_LINUXISH_H_ | 6 #define CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
11 | 11 |
12 #if defined(USE_LINUX_BREAKPAD) | 12 #if defined(USE_LINUX_BREAKPAD) |
13 #include <sys/types.h> | 13 #include <sys/types.h> |
14 | 14 |
15 #include <string> | 15 #include <string> |
16 | 16 |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 RendererCrashHandlerHostLinux(); | 174 RendererCrashHandlerHostLinux(); |
175 virtual ~RendererCrashHandlerHostLinux(); | 175 virtual ~RendererCrashHandlerHostLinux(); |
176 | 176 |
177 #if defined(USE_LINUX_BREAKPAD) | 177 #if defined(USE_LINUX_BREAKPAD) |
178 virtual void SetProcessType() OVERRIDE; | 178 virtual void SetProcessType() OVERRIDE; |
179 #endif | 179 #endif |
180 | 180 |
181 DISALLOW_COPY_AND_ASSIGN(RendererCrashHandlerHostLinux); | 181 DISALLOW_COPY_AND_ASSIGN(RendererCrashHandlerHostLinux); |
182 }; | 182 }; |
183 | 183 |
184 #endif // CHROME_BROWSER_CRASH_HANDLER_HOST_LINUXISH_H_ | 184 #endif // CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_ |
OLD | NEW |