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

Unified Diff: content/public/common/connection_filter.h

Issue 2850743004: Replace ServiceInfo with BindSourceInfo. (Closed)
Patch Set: . 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
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/common/service_manager_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/connection_filter.h
diff --git a/content/public/common/connection_filter.h b/content/public/common/connection_filter.h
index 4673d2cd1071f2009595d41d62dc853a3c145dad..681cde7d9dfa8c54d625c74956efc7cb809766da 100644
--- a/content/public/common/connection_filter.h
+++ b/content/public/common/connection_filter.h
@@ -10,7 +10,7 @@
namespace service_manager {
class Connector;
-struct ServiceInfo;
+struct BindSourceInfo;
}
namespace content {
@@ -25,10 +25,11 @@ class CONTENT_EXPORT ConnectionFilter {
// request from a remote service. The interface request is in
// |interface_pipe|, which is taken by the binding action. If the interface
// request is bound, subsequent ConnectionFilters are not consulted.
- virtual void OnBindInterface(const service_manager::ServiceInfo& source_info,
- const std::string& interface_name,
- mojo::ScopedMessagePipeHandle* interface_pipe,
- service_manager::Connector* connector) = 0;
+ virtual void OnBindInterface(
+ const service_manager::BindSourceInfo& source_info,
+ const std::string& interface_name,
+ mojo::ScopedMessagePipeHandle* interface_pipe,
+ service_manager::Connector* connector) = 0;
};
} // namespace content
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/common/service_manager_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698