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

Side by Side Diff: blimp/client/public/session/assignment.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 unified diff | Download patch
« no previous file with comments | « blimp/client/core/session/client_network_components.cc ('k') | blimp/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BLIMP_CLIENT_PUBLIC_SESSION_ASSIGNMENT_H_ 5 #ifndef BLIMP_CLIENT_PUBLIC_SESSION_ASSIGNMENT_H_
6 #define BLIMP_CLIENT_PUBLIC_SESSION_ASSIGNMENT_H_ 6 #define BLIMP_CLIENT_PUBLIC_SESSION_ASSIGNMENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 // transport protocol. 51 // transport protocol.
52 bool IsValid() const; 52 bool IsValid() const;
53 53
54 // Specifies the transport to use to connect to the engine. 54 // Specifies the transport to use to connect to the engine.
55 TransportProtocol transport_protocol; 55 TransportProtocol transport_protocol;
56 56
57 // Specifies the IP address and port on which to reach the engine. 57 // Specifies the IP address and port on which to reach the engine.
58 net::IPEndPoint engine_endpoint; 58 net::IPEndPoint engine_endpoint;
59 59
60 // Used to authenticate to the specified engine. 60 // Used to authenticate to the specified engine.
61 std::string client_token; 61 std::string client_auth_token;
62 62
63 // Specifies the engine's X.509 certificate. 63 // Specifies the engine's X.509 certificate.
64 scoped_refptr<net::X509Certificate> cert; 64 scoped_refptr<net::X509Certificate> cert;
65 }; 65 };
66 66
67 } // namespace client 67 } // namespace client
68 } // namespace blimp 68 } // namespace blimp
69 69
70 #endif // BLIMP_CLIENT_PUBLIC_SESSION_ASSIGNMENT_H_ 70 #endif // BLIMP_CLIENT_PUBLIC_SESSION_ASSIGNMENT_H_
OLDNEW
« no previous file with comments | « blimp/client/core/session/client_network_components.cc ('k') | blimp/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698