| Index: blimp/engine/app/blimp_engine_config.h
|
| diff --git a/blimp/engine/app/blimp_engine_config.h b/blimp/engine/app/blimp_engine_config.h
|
| index bba653b3e0460b0679c36441f396abc379fd6a76..1af15943e0cb60ddb1e175224fdaec89a8238136 100644
|
| --- a/blimp/engine/app/blimp_engine_config.h
|
| +++ b/blimp/engine/app/blimp_engine_config.h
|
| @@ -42,15 +42,15 @@ class BlimpEngineConfig {
|
| // Creates a BlimpEngineConfig based on individual components. Should only
|
| // be used for testing.
|
| static std::unique_ptr<BlimpEngineConfig> CreateForTest(
|
| - const std::string& client_token);
|
| + const std::string& client_auth_token);
|
|
|
| // Returns the client token.
|
| - const std::string& client_token() const;
|
| + const std::string& client_auth_token() const;
|
|
|
| private:
|
| - explicit BlimpEngineConfig(const std::string& client_token);
|
| + explicit BlimpEngineConfig(const std::string& client_auth_token);
|
|
|
| - const std::string client_token_;
|
| + const std::string client_auth_token_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(BlimpEngineConfig);
|
| };
|
|
|