| 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(); | 
| } | 
|  |