| OLD | NEW | 
|    1 /* |    1 /* | 
|    2  * libjingle |    2  * libjingle | 
|    3  * Copyright 2004 Google Inc. |    3  * Copyright 2004 Google Inc. | 
|    4  * |    4  * | 
|    5  * Redistribution and use in source and binary forms, with or without |    5  * Redistribution and use in source and binary forms, with or without | 
|    6  * modification, are permitted provided that the following conditions are met: |    6  * modification, are permitted provided that the following conditions are met: | 
|    7  * |    7  * | 
|    8  *  1. Redistributions of source code must retain the above copyright notice, |    8  *  1. Redistributions of source code must retain the above copyright notice, | 
|    9  *     this list of conditions and the following disclaimer. |    9  *     this list of conditions and the following disclaimer. | 
|   10  *  2. Redistributions in binary form must reproduce the above copyright notice, |   10  *  2. Redistributions in binary form must reproduce the above copyright notice, | 
| (...skipping 15 matching lines...) Expand all  Loading... | 
|   26  */ |   26  */ | 
|   27  |   27  | 
|   28 #ifndef TALK_SESSION_MEDIA_CHANNELMANAGER_H_ |   28 #ifndef TALK_SESSION_MEDIA_CHANNELMANAGER_H_ | 
|   29 #define TALK_SESSION_MEDIA_CHANNELMANAGER_H_ |   29 #define TALK_SESSION_MEDIA_CHANNELMANAGER_H_ | 
|   30  |   30  | 
|   31 #include <string> |   31 #include <string> | 
|   32 #include <vector> |   32 #include <vector> | 
|   33  |   33  | 
|   34 #include "talk/media/base/capturemanager.h" |   34 #include "talk/media/base/capturemanager.h" | 
|   35 #include "talk/media/base/mediaengine.h" |   35 #include "talk/media/base/mediaengine.h" | 
|   36 #include "webrtc/p2p/base/session.h" |  | 
|   37 #include "talk/session/media/voicechannel.h" |   36 #include "talk/session/media/voicechannel.h" | 
|   38 #include "webrtc/base/criticalsection.h" |   37 #include "webrtc/base/criticalsection.h" | 
|   39 #include "webrtc/base/fileutils.h" |   38 #include "webrtc/base/fileutils.h" | 
|   40 #include "webrtc/base/sigslotrepeater.h" |   39 #include "webrtc/base/sigslotrepeater.h" | 
|   41 #include "webrtc/base/thread.h" |   40 #include "webrtc/base/thread.h" | 
|   42  |   41  | 
|   43 namespace webrtc { |   42 namespace webrtc { | 
|   44 class MediaControllerInterface; |   43 class MediaControllerInterface; | 
|   45 } |   44 } | 
|   46 namespace cricket { |   45 namespace cricket { | 
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  235   VideoEncoderConfig default_video_encoder_config_; |  234   VideoEncoderConfig default_video_encoder_config_; | 
|  236   VideoRenderer* local_renderer_; |  235   VideoRenderer* local_renderer_; | 
|  237   bool enable_rtx_; |  236   bool enable_rtx_; | 
|  238  |  237  | 
|  239   bool capturing_; |  238   bool capturing_; | 
|  240 }; |  239 }; | 
|  241  |  240  | 
|  242 }  // namespace cricket |  241 }  // namespace cricket | 
|  243  |  242  | 
|  244 #endif  // TALK_SESSION_MEDIA_CHANNELMANAGER_H_ |  243 #endif  // TALK_SESSION_MEDIA_CHANNELMANAGER_H_ | 
| OLD | NEW |