| Index: blimp/client/session/assignment_source.cc
|
| diff --git a/blimp/client/session/assignment_source.cc b/blimp/client/session/assignment_source.cc
|
| index f22e5543af848f42510e254a9e599676bae33beb..025d1edec443840dd400264f3e862cedc6346c8e 100644
|
| --- a/blimp/client/session/assignment_source.cc
|
| +++ b/blimp/client/session/assignment_source.cc
|
| @@ -17,7 +17,7 @@
|
| #include "base/task_runner_util.h"
|
| #include "base/values.h"
|
| #include "blimp/client/app/blimp_client_switches.h"
|
| -#include "blimp/common/protocol_version.h"
|
| +#include "blimp/common/version_info.h"
|
| #include "components/safe_json/safe_json_parser.h"
|
| #include "net/base/ip_address.h"
|
| #include "net/base/ip_endpoint.h"
|
| @@ -244,7 +244,7 @@ void AssignmentSource::QueryAssigner(const std::string& client_auth_token) {
|
|
|
| // Write the JSON for the request data.
|
| base::DictionaryValue dictionary;
|
| - dictionary.SetString(kProtocolVersionKey, blimp::kEngineVersion);
|
| + dictionary.SetString(kProtocolVersionKey, GetAssignmentRequestVersion());
|
| std::string json;
|
| base::JSONWriter::Write(dictionary, &json);
|
| url_fetcher_->SetUploadData("application/json", json);
|
|
|