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

Unified Diff: blimp/engine/app/blimp_engine_config.h

Issue 2281783002: Changes client_token to be client_auth_token. (Closed)
Patch Set: Linting. Created 4 years, 3 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 | « blimp/common/switches.cc ('k') | blimp/engine/app/blimp_engine_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « blimp/common/switches.cc ('k') | blimp/engine/app/blimp_engine_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698