Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2570)

Unified Diff: content/shell/app/shell_crash_reporter_client.h

Issue 585633002: Rename BreakpadClient to CrashReporterClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/app/shell_breakpad_client.cc ('k') | content/shell/app/shell_crash_reporter_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_crash_reporter_client.h
diff --git a/content/shell/app/shell_breakpad_client.h b/content/shell/app/shell_crash_reporter_client.h
similarity index 77%
rename from content/shell/app/shell_breakpad_client.h
rename to content/shell/app/shell_crash_reporter_client.h
index caed5449c72d7bc9987e3436ac5d504997da86f0..1ab416da520450c59c6f342bdcf21f67d7804578 100644
--- a/content/shell/app/shell_breakpad_client.h
+++ b/content/shell/app/shell_crash_reporter_client.h
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_SHELL_APP_SHELL_BREAKPAD_CLIENT_H_
-#define CONTENT_SHELL_APP_SHELL_BREAKPAD_CLIENT_H_
+#ifndef CONTENT_SHELL_APP_SHELL_CRASH_REPORTER_CLIENT_H_
+#define CONTENT_SHELL_APP_SHELL_CRASH_REPORTER_CLIENT_H_
#include "base/compiler_specific.h"
-#include "components/crash/app/breakpad_client.h"
+#include "components/crash/app/crash_reporter_client.h"
namespace content {
-class ShellBreakpadClient : public breakpad::BreakpadClient {
+class ShellCrashReporterClient : public crash_reporter::CrashReporterClient {
public:
- ShellBreakpadClient();
- virtual ~ShellBreakpadClient();
+ ShellCrashReporterClient();
+ virtual ~ShellCrashReporterClient();
#if defined(OS_WIN)
// Returns a textual description of the product type and version to include
@@ -46,10 +46,10 @@ class ShellBreakpadClient : public breakpad::BreakpadClient {
virtual bool EnableBreakpadForProcess(
const std::string& process_type) OVERRIDE;
-private:
- DISALLOW_COPY_AND_ASSIGN(ShellBreakpadClient);
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ShellCrashReporterClient);
};
} // namespace content
-#endif // CONTENT_SHELL_APP_SHELL_BREAKPAD_CLIENT_H_
+#endif // CONTENT_SHELL_APP_SHELL_CRASH_REPORTER_CLIENT_H_
« no previous file with comments | « content/shell/app/shell_breakpad_client.cc ('k') | content/shell/app/shell_crash_reporter_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698