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

Unified Diff: mojo/service_manager/background_service_loader.h

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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: mojo/service_manager/background_service_loader.h
diff --git a/mojo/service_manager/background_service_loader.h b/mojo/service_manager/background_service_loader.h
index b5059417ccd19ab151b17c744651fd262f196ea4..bdfae0c6754643eb43a9f696a5d64c1e57b8a171 100644
--- a/mojo/service_manager/background_service_loader.h
+++ b/mojo/service_manager/background_service_loader.h
@@ -25,7 +25,7 @@ class MOJO_SERVICE_MANAGER_EXPORT BackgroundServiceLoader
// ServiceLoader overrides:
virtual void LoadService(ServiceManager* manager,
const GURL& url,
- ScopedShellHandle service_handle) OVERRIDE;
+ ScopedMessagePipeHandle service_handle) OVERRIDE;
virtual void OnServiceError(ServiceManager* manager,
const GURL& url) OVERRIDE;
@@ -38,7 +38,7 @@ class MOJO_SERVICE_MANAGER_EXPORT BackgroundServiceLoader
// thread safe).
void LoadServiceOnBackgroundThread(ServiceManager* manager,
const GURL& url,
- ScopedShellHandle* shell_handle);
+ ScopedMessagePipeHandle* shell_handle);
void OnServiceErrorOnBackgroundThread(ServiceManager* manager,
const GURL& url);
void ShutdownOnBackgroundThread();

Powered by Google App Engine
This is Rietveld 408576698