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

Unified Diff: chrome/browser/win/jumplist_factory.cc

Issue 2937993002: Revert of Fix stability and data racing issues, coalesce more updates for JumpList (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « chrome/browser/win/jumplist_factory.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/win/jumplist_factory.cc
diff --git a/chrome/browser/win/jumplist_factory.cc b/chrome/browser/win/jumplist_factory.cc
index 66e6fe0b89987eaf598d8af7bd0f61fab900389c..92b10bbe0c95e48e73c8b4f435409870896cb5d4 100644
--- a/chrome/browser/win/jumplist_factory.cc
+++ b/chrome/browser/win/jumplist_factory.cc
@@ -8,13 +8,12 @@
#include "chrome/browser/history/top_sites_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sessions/tab_restore_service_factory.h"
-#include "chrome/browser/win/jumplist.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
// static
-JumpList* JumpListFactory::GetForProfile(Profile* profile) {
+scoped_refptr<JumpList> JumpListFactory::GetForProfile(Profile* profile) {
return static_cast<JumpList*>(
- GetInstance()->GetServiceForBrowserContext(profile, true));
+ GetInstance()->GetServiceForBrowserContext(profile, true).get());
}
// static
@@ -23,7 +22,7 @@
}
JumpListFactory::JumpListFactory()
- : BrowserContextKeyedServiceFactory(
+ : RefcountedBrowserContextKeyedServiceFactory(
"JumpList",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(TabRestoreServiceFactory::GetInstance());
@@ -33,7 +32,7 @@
JumpListFactory::~JumpListFactory() = default;
-KeyedService* JumpListFactory::BuildServiceInstanceFor(
+scoped_refptr<RefcountedKeyedService> JumpListFactory::BuildServiceInstanceFor(
content::BrowserContext* context) const {
return new JumpList(Profile::FromBrowserContext(context));
}
« no previous file with comments | « chrome/browser/win/jumplist_factory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698