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

Unified Diff: components/crash/app/crash_keys_win.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 | « components/crash/app/breakpad_win.cc ('k') | components/crash/app/crash_keys_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/app/crash_keys_win.h
diff --git a/components/crash/app/crash_keys_win.h b/components/crash/app/crash_keys_win.h
index 135a31c35239c333e73223edcde96012d79dcfea..45fa49baacc4abc640cb44bd02decefb5c37769b 100644
--- a/components/crash/app/crash_keys_win.h
+++ b/components/crash/app/crash_keys_win.h
@@ -16,9 +16,11 @@ namespace base {
class CommandLine;
} // namespace base
-namespace breakpad {
+namespace crash_reporter {
+class CrashReporterClient;
+}
-class BreakpadClient;
+namespace breakpad {
// Manages the breakpad key/value pair stash, there may only be one instance
// of this class per process at one time.
@@ -36,13 +38,13 @@ class CrashKeysWin {
// profile, e.g. "mandatory", or "roaming" or similar.
// |cmd_line| is the current process' command line consulted for explicit
// crash reporting flags.
- // |breakpad_client| is consulted for crash reporting settings.
+ // |crash_client| is consulted for crash reporting settings.
google_breakpad::CustomClientInfo* GetCustomInfo(
const std::wstring& exe_path,
const std::wstring& type,
const std::wstring& profile_type,
base::CommandLine* cmd_line,
- BreakpadClient* breakpad_client);
+ crash_reporter::CrashReporterClient* crash_client);
void SetCrashKeyValue(const std::wstring& key, const std::wstring& value);
void ClearCrashKeyValue(const std::wstring& key);
@@ -52,7 +54,7 @@ class CrashKeysWin {
private:
// One-time initialization of private key/value pairs.
void SetPluginPath(const std::wstring& path);
- void SetBreakpadDumpPath(BreakpadClient* breakpad_client);
+ void SetBreakpadDumpPath(crash_reporter::CrashReporterClient* crash_client);
// Must not be resized after GetCustomInfo is invoked.
std::vector<google_breakpad::CustomInfoEntry> custom_entries_;
« no previous file with comments | « components/crash/app/breakpad_win.cc ('k') | components/crash/app/crash_keys_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698