| Index: chrome/browser/crash_handler_host_linuxish.h
|
| diff --git a/chrome/browser/crash_handler_host_linux.h b/chrome/browser/crash_handler_host_linuxish.h
|
| similarity index 91%
|
| rename from chrome/browser/crash_handler_host_linux.h
|
| rename to chrome/browser/crash_handler_host_linuxish.h
|
| index 55ef624ee3d5706aa4cc923fe638ec9f1bf6eb65..80c06d978929223f3786faf1cff1e136d9b275b3 100644
|
| --- a/chrome/browser/crash_handler_host_linux.h
|
| +++ b/chrome/browser/crash_handler_host_linuxish.h
|
| @@ -1,9 +1,9 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 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_BROWSER_CRASH_HANDLER_HOST_LINUX_H_
|
| -#define CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_
|
| +#ifndef CHROME_BROWSER_CRASH_HANDLER_HOST_LINUXISH_H_
|
| +#define CHROME_BROWSER_CRASH_HANDLER_HOST_LINUXISH_H_
|
| #pragma once
|
|
|
| #include "base/compiler_specific.h"
|
| @@ -26,11 +26,11 @@ class Thread;
|
| template <typename T> struct DefaultSingletonTraits;
|
|
|
| // This is the base class for singleton objects which crash dump renderers and
|
| -// plugins on Linux. We perform the crash dump from the browser because it
|
| -// allows us to be outside the sandbox.
|
| +// plugins on Linux or Android. We perform the crash dump from the browser
|
| +// because it allows us to be outside the sandbox.
|
| //
|
| -// PluginCrashHandlerHostLinux and RendererCrashHandlerHostLinux are singletons
|
| -// that handle plugin and renderer crashes, respectively.
|
| +// PluginCrashHandlerHostLinux and RendererCrashHandlerHostLinux are
|
| +// singletons that handle plugin and renderer crashes, respectively.
|
| //
|
| // Processes signal that they need to be dumped by sending a datagram over a
|
| // UNIX domain socket. All processes of the same type share the client end of
|
| @@ -181,4 +181,4 @@ class RendererCrashHandlerHostLinux : public CrashHandlerHostLinux {
|
| DISALLOW_COPY_AND_ASSIGN(RendererCrashHandlerHostLinux);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_CRASH_HANDLER_HOST_LINUX_H_
|
| +#endif // CHROME_BROWSER_CRASH_HANDLER_HOST_LINUXISH_H_
|
|
|