| 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
|
|
|