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

Side by Side Diff: chrome/installer/setup/installer_crash_reporter_client.h

Issue 2422103004: Adding sampling support to installer crash reporter client. (Closed)
Patch Set: braces Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « chrome/installer/setup/DEPS ('k') | chrome/installer/setup/installer_crash_reporter_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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_INSTALLER_SETUP_INSTALLER_CRASH_REPORTER_CLIENT_H_ 5 #ifndef CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTER_CLIENT_H_
6 #define CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTER_CLIENT_H_ 6 #define CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTER_CLIENT_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 18 matching lines...) Expand all
29 bool* is_rtl_locale) override; 29 bool* is_rtl_locale) override;
30 bool AboutToRestart() override; 30 bool AboutToRestart() override;
31 bool GetDeferredUploadsSupported(bool is_per_user_install) override; 31 bool GetDeferredUploadsSupported(bool is_per_user_install) override;
32 bool GetIsPerUserInstall(const base::string16& exe_path) override; 32 bool GetIsPerUserInstall(const base::string16& exe_path) override;
33 bool GetShouldDumpLargerDumps(bool is_per_user_install) override; 33 bool GetShouldDumpLargerDumps(bool is_per_user_install) override;
34 int GetResultCodeRespawnFailed() override; 34 int GetResultCodeRespawnFailed() override;
35 bool GetCrashDumpLocation(base::string16* crash_dir) override; 35 bool GetCrashDumpLocation(base::string16* crash_dir) override;
36 size_t RegisterCrashKeys() override; 36 size_t RegisterCrashKeys() override;
37 bool IsRunningUnattended() override; 37 bool IsRunningUnattended() override;
38 bool GetCollectStatsConsent() override; 38 bool GetCollectStatsConsent() override;
39 bool GetCollectStatsInSample() override;
39 bool ReportingIsEnforcedByPolicy(bool* enabled) override; 40 bool ReportingIsEnforcedByPolicy(bool* enabled) override;
40 bool EnableBreakpadForProcess(const std::string& process_type) override; 41 bool EnableBreakpadForProcess(const std::string& process_type) override;
41 42
42 private: 43 private:
43 bool is_per_user_install_; 44 bool is_per_user_install_;
44 45
45 DISALLOW_COPY_AND_ASSIGN(InstallerCrashReporterClient); 46 DISALLOW_COPY_AND_ASSIGN(InstallerCrashReporterClient);
46 }; 47 };
47 48
48 #endif // CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTER_CLIENT_H_ 49 #endif // CHROME_INSTALLER_SETUP_INSTALLER_CRASH_REPORTER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/installer/setup/DEPS ('k') | chrome/installer/setup/installer_crash_reporter_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698