| Index: content/browser/mojo/mojo_child_connection.h
|
| diff --git a/content/browser/mojo/mojo_child_connection.h b/content/browser/mojo/mojo_child_connection.h
|
| index 7227284cc160b99725e30a55d01eb982d8315750..9ed83da4ae977308fed1604f176ec8eb025917aa 100644
|
| --- a/content/browser/mojo/mojo_child_connection.h
|
| +++ b/content/browser/mojo/mojo_child_connection.h
|
| @@ -45,7 +45,7 @@ class MojoChildConnection {
|
| // A token which must be passed to the child process via
|
| // |switches::kPrimordialPipeToken| in order for the child to initialize its
|
| // end of the shell connection pipe.
|
| - std::string shell_client_token() const { return shell_client_token_; }
|
| + std::string service_token() const { return service_token_; }
|
|
|
| // Sets the child connection's process handle. This should be called as soon
|
| // as the process has been launched, and the connection will not be fully
|
| @@ -59,7 +59,7 @@ class MojoChildConnection {
|
| #endif
|
|
|
| private:
|
| - const std::string shell_client_token_;
|
| + const std::string service_token_;
|
| std::unique_ptr<shell::Connection> connection_;
|
| shell::mojom::PIDReceiverPtr pid_receiver_;
|
| #if defined(OS_ANDROID)
|
|
|