summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-11 22:16:52 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-11 22:16:52 +0000
commit8da82ea1e5db2b44905110109dba7cd225cd3f0c (patch)
treedcd0d013d701b5b051af6c7b6702a1e5d74672ec /chrome/browser/download
parentfbee101b6ae57193e55e07264106b706e598ea3e (diff)
downloadchromium_src-8da82ea1e5db2b44905110109dba7cd225cd3f0c.zip
chromium_src-8da82ea1e5db2b44905110109dba7cd225cd3f0c.tar.gz
chromium_src-8da82ea1e5db2b44905110109dba7cd225cd3f0c.tar.bz2
Move DownloadPersistentStoreInfo to content\public\browser and into the content namespace.
BUG=98716 TBR=joi Review URL: https://chromiumcodereview.appspot.com/9666042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126083 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/download')
-rw-r--r--chrome/browser/download/download_browsertest.cc3
-rw-r--r--chrome/browser/download/download_extension_test.cc3
-rw-r--r--chrome/browser/download/download_history.cc3
-rw-r--r--chrome/browser/download/save_page_browsertest.cc3
4 files changed, 8 insertions, 4 deletions
diff --git a/chrome/browser/download/download_browsertest.cc b/chrome/browser/download/download_browsertest.cc
index 72d7c2f..8f6d762 100644
--- a/chrome/browser/download/download_browsertest.cc
+++ b/chrome/browser/download/download_browsertest.cc
@@ -43,12 +43,12 @@
#include "chrome/common/url_constants.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
-#include "content/browser/download/download_persistent_store_info.h"
#include "content/browser/net/url_request_mock_http_job.h"
#include "content/browser/net/url_request_slow_download_job.h"
#include "content/browser/renderer_host/resource_dispatcher_host.h"
#include "content/public/browser/download_item.h"
#include "content/public/browser/download_manager.h"
+#include "content/public/browser/download_persistent_store_info.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"
@@ -61,6 +61,7 @@
using content::BrowserThread;
using content::DownloadItem;
using content::DownloadManager;
+using content::DownloadPersistentStoreInfo;
using content::WebContents;
namespace {
diff --git a/chrome/browser/download/download_extension_test.cc b/chrome/browser/download/download_extension_test.cc
index 64542f4..d4e9081 100644
--- a/chrome/browser/download/download_extension_test.cc
+++ b/chrome/browser/download/download_extension_test.cc
@@ -20,10 +20,10 @@
#include "chrome/common/pref_names.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
-#include "content/browser/download/download_persistent_store_info.h"
#include "content/browser/net/url_request_slow_download_job.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/download_manager.h"
+#include "content/public/browser/download_persistent_store_info.h"
#include "net/base/data_url.h"
#include "net/base/net_util.h"
#include "ui/gfx/codec/png_codec.h"
@@ -31,6 +31,7 @@
using content::BrowserThread;
using content::DownloadItem;
using content::DownloadManager;
+using content::DownloadPersistentStoreInfo;
namespace {
diff --git a/chrome/browser/download/download_history.cc b/chrome/browser/download/download_history.cc
index 5f56927..bb59dc9 100644
--- a/chrome/browser/download/download_history.cc
+++ b/chrome/browser/download/download_history.cc
@@ -8,10 +8,11 @@
#include "chrome/browser/download/chrome_download_manager_delegate.h"
#include "chrome/browser/history/history_marshaling.h"
#include "chrome/browser/profiles/profile.h"
-#include "content/browser/download/download_persistent_store_info.h"
#include "content/public/browser/download_item.h"
+#include "content/public/browser/download_persistent_store_info.h"
using content::DownloadItem;
+using content::DownloadPersistentStoreInfo;
DownloadHistory::DownloadHistory(Profile* profile)
: profile_(profile),
diff --git a/chrome/browser/download/save_page_browsertest.cc b/chrome/browser/download/save_page_browsertest.cc
index 835b2b1..b9b36aa 100644
--- a/chrome/browser/download/save_page_browsertest.cc
+++ b/chrome/browser/download/save_page_browsertest.cc
@@ -22,10 +22,10 @@
#include "chrome/common/url_constants.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
-#include "content/browser/download/download_persistent_store_info.h"
#include "content/browser/net/url_request_mock_http_job.h"
#include "content/public/browser/download_item.h"
#include "content/public/browser/download_manager.h"
+#include "content/public/browser/download_persistent_store_info.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/web_contents.h"
@@ -34,6 +34,7 @@
using content::BrowserThread;
using content::DownloadItem;
using content::DownloadManager;
+using content::DownloadPersistentStoreInfo;
using content::WebContents;
namespace {