Fix cpplint warning in the previous cl to peerconnection client example.

BUG=3872
TEST=Manual Test + AutoTest
R=tommi@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/40949004

Cr-Commit-Position: refs/heads/master@{#8525}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8525 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
braveyao@webrtc.org 2015-02-27 09:51:25 +00:00
parent abbdd520b0
commit c68e0c9dfe
2 changed files with 54 additions and 53 deletions

View File

@ -28,6 +28,7 @@
#include "talk/examples/peerconnection/client/conductor.h"
#include <utility>
#include <vector>
#include "talk/app/webrtc/videosourceinterface.h"
#include "talk/examples/peerconnection/client/defaults.h"
@ -103,7 +104,7 @@ bool Conductor::InitializePeerConnection() {
return false;
}
if (!CreatePeerConnection(DTLS_ON)) {
if (!CreatePeerConnection(DTLS_ON)) {
main_wnd_->MessageBox("Error",
"CreatePeerConnection failed", true);
DeletePeerConnection();

View File

@ -25,8 +25,8 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef PEERCONNECTION_SAMPLES_CLIENT_CONDUCTOR_H_
#define PEERCONNECTION_SAMPLES_CLIENT_CONDUCTOR_H_
#ifndef TALK_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
#define TALK_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_
#pragma once
#include <deque>
@ -143,4 +143,4 @@ class Conductor
std::string server_;
};
#endif // PEERCONNECTION_SAMPLES_CLIENT_CONDUCTOR_H_
#endif // TALK_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_