diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 08:00:57 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 08:00:57 +0000 |
commit | 9e94ab77b2693454541a631a212b940378d824a7 (patch) | |
tree | cf0abc57748a31cecf5519057c129fd5100b3f26 /chrome/browser/crash_upload_list.h | |
parent | bb8582c001573d8fa9451b882cc1a182d8ca0785 (diff) | |
download | chromium_src-9e94ab77b2693454541a631a212b940378d824a7.zip chromium_src-9e94ab77b2693454541a631a212b940378d824a7.tar.gz chromium_src-9e94ab77b2693454541a631a212b940378d824a7.tar.bz2 |
Revert 213003 "Move UploadList class to base/"
> Move UploadList class to base/
>
> I want to move CrashUploadList to components/breakpad. However, since
> other classes in chrome/ also inherit from UploadList, I need to move it
> to a "neutral" location.
>
> BUG=247431
> R=mark@chromium.org
>
> Review URL: https://chromiumcodereview.appspot.com/19955002
TBR=jochen@chromium.org
Review URL: https://codereview.chromium.org/20030002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/crash_upload_list.h')
-rw-r--r-- | chrome/browser/crash_upload_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/crash_upload_list.h b/chrome/browser/crash_upload_list.h index b7ff6cf..f0b201c 100644 --- a/chrome/browser/crash_upload_list.h +++ b/chrome/browser/crash_upload_list.h @@ -5,10 +5,10 @@ #ifndef CHROME_BROWSER_CRASH_UPLOAD_LIST_H_ #define CHROME_BROWSER_CRASH_UPLOAD_LIST_H_ -#include "base/upload_list.h" +#include "chrome/browser/upload_list.h" // An upload list manager for crash reports from breakpad. -class CrashUploadList : public base::UploadList { +class CrashUploadList : public UploadList { public: // Static factory method that creates the platform-specific implementation // of the crash upload list with the given callback delegate. |