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

Unified Diff: apps/browser_context_keyed_service_factories.cc

Issue 2951003002: SavedFilesService interface in //extensions (Closed)
Patch Set: cleanup 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
Index: apps/browser_context_keyed_service_factories.cc
diff --git a/apps/browser_context_keyed_service_factories.cc b/apps/browser_context_keyed_service_factories.cc
index b91d3cdbcd59837ccce3a368ea7233bcf300b9cc..60b96262a564774568c566042d72e4e5d4d71425 100644
--- a/apps/browser_context_keyed_service_factories.cc
+++ b/apps/browser_context_keyed_service_factories.cc
@@ -6,8 +6,8 @@
#include "apps/app_restore_service.h"
#include "apps/app_restore_service_factory.h"
-#include "apps/saved_files_service.h"
#include "apps/saved_files_service_factory.h"
+#include "apps/saved_files_service_impl.h"
#include "content/public/browser/browser_context.h"
#include "extensions/browser/app_window/app_window_geometry_cache.h"
@@ -24,8 +24,9 @@ void NotifyApplicationTerminating(content::BrowserContext* browser_context) {
CHECK(restore_service);
restore_service->OnApplicationTerminating();
- SavedFilesService* saved_files_service =
- SavedFilesServiceFactory::GetForBrowserContextIfExists(browser_context);
+ SavedFilesServiceImpl* saved_files_service =
+ SavedFilesServiceImplFactory::GetForBrowserContextIfExists(
+ browser_context);
if (saved_files_service)
saved_files_service->OnApplicationTerminating();
}

Powered by Google App Engine
This is Rietveld 408576698