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

Unified Diff: content/public/browser/utility_process_host.h

Issue 2832633002: Add PDF compositor service (Closed)
Patch Set: rebase Created 3 years, 8 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: content/public/browser/utility_process_host.h
diff --git a/content/public/browser/utility_process_host.h b/content/public/browser/utility_process_host.h
index 5a404dbec1112aad88ed313fba155b8d18d75658..555d616cb20c38b5ca8c2ea901afb50ee6a59bd4 100644
--- a/content/public/browser/utility_process_host.h
+++ b/content/public/browser/utility_process_host.h
@@ -85,8 +85,14 @@ class UtilityProcessHost : public IPC::Sender {
virtual void BindInterface(const std::string& interface_name,
mojo::ScopedMessagePipeHandle interface_pipe) = 0;
+ // Register mojo services that the utility process can use.
+ virtual void RegisterMojoServices() = 0;
+
// Set the name of the process to appear in the task manager.
virtual void SetName(const base::string16& name) = 0;
+
+ protected:
+ class ConnectionFilterImpl;
jam 2017/04/28 15:49:10 why does this need to be here?
Wei Li 2017/04/29 04:35:18 Moved to Impl.
};
}; // namespace content

Powered by Google App Engine
This is Rietveld 408576698