Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(461)

Unified Diff: chrome/browser/automation/testing_automation_provider.cc

Issue 8135017: Refactor downloads into a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged to LKGR to run try bots. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/automation/testing_automation_provider.cc
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
index 4fa73fc649fa902b934f2b6f11906b92fe4a259e..91e9d5982f6d16e59e97bdf3f225c9b97321460a 100644
--- a/chrome/browser/automation/testing_automation_provider.cc
+++ b/chrome/browser/automation/testing_automation_provider.cc
@@ -45,6 +45,8 @@
#include "chrome/browser/content_settings/host_content_settings_map.h"
#include "chrome/browser/debugger/devtools_window.h"
#include "chrome/browser/download/download_prefs.h"
+#include "chrome/browser/download/download_service.h"
+#include "chrome/browser/download/download_service_factory.h"
#include "chrome/browser/download/save_package_file_picker.h"
#include "chrome/browser/extensions/extension_browser_event_router.h"
#include "chrome/browser/extensions/extension_host.h"
@@ -3078,9 +3080,12 @@ void TestingAutomationProvider::GetDownloadsInfo(Browser* browser,
scoped_ptr<DictionaryValue> return_value(new DictionaryValue);
ListValue* list_of_downloads = new ListValue;
- if (browser->profile()->HasCreatedDownloadManager()) {
+ DownloadService* download_service(
+ DownloadServiceFactory::GetForProfile(profile()));
+
+ if (download_service->HasCreatedDownloadManager()) {
std::vector<DownloadItem*> downloads;
- browser->profile()->GetDownloadManager()->
+ download_service->GetDownloadManager()->
GetAllDownloads(FilePath(), &downloads);
for (std::vector<DownloadItem*>::iterator it = downloads.begin();
@@ -3104,7 +3109,10 @@ void TestingAutomationProvider::WaitForAllDownloadsToComplete(
.SendError(StringPrintf("List of IDs of previous downloads required."));
return;
}
- if (!browser->profile()->HasCreatedDownloadManager()) {
+
+ DownloadService* download_service =
+ DownloadServiceFactory::GetForProfile(profile());
+ if (!download_service->HasCreatedDownloadManager()) {
// No download manager, so no downloads to wait for.
AutomationJSONReply(this, reply_message).SendSuccess(NULL);
return;
@@ -3112,7 +3120,7 @@ void TestingAutomationProvider::WaitForAllDownloadsToComplete(
// This observer will delete itself.
new AllDownloadsCompleteObserver(
- this, reply_message, browser->profile()->GetDownloadManager(),
+ this, reply_message, download_service->GetDownloadManager(),
pre_download_ids);
}
@@ -3146,7 +3154,9 @@ void TestingAutomationProvider::PerformActionOnDownload(
int id;
std::string action;
- if (!browser->profile()->HasCreatedDownloadManager()) {
+ DownloadService* download_service =
+ DownloadServiceFactory::GetForProfile(profile());
+ if (!download_service->HasCreatedDownloadManager()) {
AutomationJSONReply(this, reply_message).SendError("No download manager.");
return;
}
@@ -3156,7 +3166,7 @@ void TestingAutomationProvider::PerformActionOnDownload(
return;
}
- DownloadManager* download_manager = browser->profile()->GetDownloadManager();
+ DownloadManager* download_manager = download_service->GetDownloadManager();
DownloadItem* selected_item = GetDownloadItemFromId(id, download_manager);
if (!selected_item) {
AutomationJSONReply(this, reply_message)
@@ -3685,7 +3695,8 @@ void TestingAutomationProvider::SaveTabContents(
}
// The observer will delete itself when done.
new SavePackageNotificationObserver(
- browser->profile()->GetDownloadManager(), this, reply_message);
+ DownloadServiceFactory::GetForProfile(profile())->GetDownloadManager(),
+ this, reply_message);
}
// Refer to ImportSettings() in chrome/test/pyautolib/pyauto.py for sample

Powered by Google App Engine
This is Rietveld 408576698