summaryrefslogtreecommitdiffstats
path: root/chrome/browser/web_applications
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-20 16:48:17 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-20 16:48:17 +0000
commite582fdd525662debfd317452d87846b876a7bf70 (patch)
tree0ebe0939ce3740d1d39f0dffaae495ba9037f6b8 /chrome/browser/web_applications
parent9a575dadac75f0b9476f4335e4047057dd9ccd8d (diff)
downloadchromium_src-e582fdd525662debfd317452d87846b876a7bf70.zip
chromium_src-e582fdd525662debfd317452d87846b876a7bf70.tar.gz
chromium_src-e582fdd525662debfd317452d87846b876a7bf70.tar.bz2
Move DownloadFile/DownloadItem/DownloadManager interfaces into content/public/browser, and also put them into the content namespace.
BUG=98716 Review URL: http://codereview.chromium.org/9004005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_applications')
-rw-r--r--chrome/browser/web_applications/web_app.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/web_applications/web_app.cc b/chrome/browser/web_applications/web_app.cc
index 27e075cb..8464712 100644
--- a/chrome/browser/web_applications/web_app.cc
+++ b/chrome/browser/web_applications/web_app.cc
@@ -21,8 +21,8 @@
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/url_constants.h"
-#include "content/browser/download/download_file.h"
#include "content/public/browser/browser_thread.h"
+#include "content/public/browser/download_file.h"
#if defined(OS_POSIX) && !defined(OS_MACOSX)
#include "base/environment.h"
@@ -33,6 +33,7 @@
#endif // defined(OS_WIN)
using content::BrowserThread;
+using content::DownloadFile;
namespace {