diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 00:06:08 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 00:06:08 +0000 |
commit | e3b2bdf416fb07b9ca80f7182e9f6a97eabb30a2 (patch) | |
tree | 339fd96df42f6344c1926f2326a8cac2d5661305 /chrome/browser/crash_upload_list.h | |
parent | 83f67b4efa01fc775e8d67f968f4e35d0a351036 (diff) | |
download | chromium_src-e3b2bdf416fb07b9ca80f7182e9f6a97eabb30a2.zip chromium_src-e3b2bdf416fb07b9ca80f7182e9f6a97eabb30a2.tar.gz chromium_src-e3b2bdf416fb07b9ca80f7182e9f6a97eabb30a2.tar.bz2 |
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
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213003 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 f0b201c..b7ff6cf 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 "chrome/browser/upload_list.h" +#include "base/upload_list.h" // An upload list manager for crash reports from breakpad. -class CrashUploadList : public UploadList { +class CrashUploadList : public base::UploadList { public: // Static factory method that creates the platform-specific implementation // of the crash upload list with the given callback delegate. |