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

Side by Side Diff: remoting/protocol/session_config.h

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: Created 5 years 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 | « remoting/protocol/session.h ('k') | remoting/protocol/session_manager.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 REMOTING_PROTOCOL_SESSION_CONFIG_H_ 5 #ifndef REMOTING_PROTOCOL_SESSION_CONFIG_H_
6 #define REMOTING_PROTOCOL_SESSION_CONFIG_H_ 6 #define REMOTING_PROTOCOL_SESSION_CONFIG_H_
7 7
8 #include <list> 8 #include <list>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
13 12
14 namespace remoting { 13 namespace remoting {
15 namespace protocol { 14 namespace protocol {
16 15
17 extern const int kDefaultStreamVersion; 16 extern const int kDefaultStreamVersion;
18 17
19 // Struct for configuration parameters of a single channel. 18 // Struct for configuration parameters of a single channel.
20 // Some channels (like video) may have multiple underlying sockets that need 19 // Some channels (like video) may have multiple underlying sockets that need
21 // to be configured simultaneously. 20 // to be configured simultaneously.
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 std::list<ChannelConfig> video_configs_; 201 std::list<ChannelConfig> video_configs_;
203 std::list<ChannelConfig> audio_configs_; 202 std::list<ChannelConfig> audio_configs_;
204 203
205 bool vp9_experiment_enabled_ = false; 204 bool vp9_experiment_enabled_ = false;
206 }; 205 };
207 206
208 } // namespace protocol 207 } // namespace protocol
209 } // namespace remoting 208 } // namespace remoting
210 209
211 #endif // REMOTING_PROTOCOL_SESSION_CONFIG_H_ 210 #endif // REMOTING_PROTOCOL_SESSION_CONFIG_H_
OLDNEW
« no previous file with comments | « remoting/protocol/session.h ('k') | remoting/protocol/session_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698