Rename autoUpload to shouldUpload

This commit is contained in:
Samuel Attard 2016-11-08 11:03:57 +11:00 committed by Kevin Sawicki
parent 774b2f99f2
commit 7b8eb3e09c
11 changed files with 51 additions and 18 deletions

View file

@ -26,7 +26,7 @@ class CrashReporter {
const std::string& company_name,
const std::string& submit_url,
const base::FilePath& crashes_dir,
bool auto_submit,
bool should_upload,
bool skip_system_crash_handler,
const StringMap& extra_parameters);
@ -42,10 +42,12 @@ class CrashReporter {
const std::string& company_name,
const std::string& submit_url,
const base::FilePath& crashes_dir,
bool auto_submit,
bool should_upload,
bool skip_system_crash_handler);
virtual void SetUploadParameters();
virtual void SetShouldUpload();
StringMap upload_parameters_;
bool is_browser_;