diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-22 21:05:54 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-22 21:05:54 +0000 |
commit | 234e826c700087b3bb68b364286b07e318f5e1aa (patch) | |
tree | 0a247bcb6e46e3c8202b1809bdfb061974f70146 /chrome/browser/crash_upload_list.h | |
parent | 8db351a4f3543c4f70f8c04c1a8bab4efbad066a (diff) | |
download | chromium_src-234e826c700087b3bb68b364286b07e318f5e1aa.zip chromium_src-234e826c700087b3bb68b364286b07e318f5e1aa.tar.gz chromium_src-234e826c700087b3bb68b364286b07e318f5e1aa.tar.bz2 |
Cleanup: Make "uploads.log" a constant.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9432015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123104 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/crash_upload_list.h')
-rw-r--r-- | chrome/browser/crash_upload_list.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/chrome/browser/crash_upload_list.h b/chrome/browser/crash_upload_list.h index c8b30d1..9446f8f 100644 --- a/chrome/browser/crash_upload_list.h +++ b/chrome/browser/crash_upload_list.h @@ -1,4 +1,4 @@ -// 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. @@ -6,12 +6,12 @@ #define CHROME_BROWSER_CRASH_UPLOAD_LIST_H_ #pragma once -#include "base/memory/ref_counted.h" -#include "base/time.h" - #include <string> #include <vector> +#include "base/memory/ref_counted.h" +#include "base/time.h" + class CrashUploadList : public base::RefCountedThreadSafe<CrashUploadList> { public: struct CrashInfo { @@ -36,6 +36,10 @@ class CrashUploadList : public base::RefCountedThreadSafe<CrashUploadList> { // of the crash upload list with the given callback delegate. static CrashUploadList* Create(Delegate* delegate); + // Should match kReporterLogFilename in + // breakpad/src/client/apple/Framework/BreakpadDefines.h. + static const char* kReporterLogFilename; + // Creates a new crash upload list with the given callback delegate. explicit CrashUploadList(Delegate* delegate); |