diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-16 03:30:19 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-16 03:30:19 +0000 |
commit | a85eba366b78e2f4ff4a90463042bf46ed8e3a50 (patch) | |
tree | 657afd99b339eb7ec2a7c4cd544555f1caec8c9c /remoting/jingle_glue/jingle_client.h | |
parent | 49211b31dfda9a2a9184e2139dc0c6472f6adf39 (diff) | |
download | chromium_src-a85eba366b78e2f4ff4a90463042bf46ed8e3a50.zip chromium_src-a85eba366b78e2f4ff4a90463042bf46ed8e3a50.tar.gz chromium_src-a85eba366b78e2f4ff4a90463042bf46ed8e3a50.tar.bz2 |
Style fixes after readability review.
TEST=compile
BUG=none
Review URL: http://codereview.chromium.org/2816007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/jingle_glue/jingle_client.h')
-rw-r--r-- | remoting/jingle_glue/jingle_client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/remoting/jingle_glue/jingle_client.h b/remoting/jingle_glue/jingle_client.h index a074757..aa94a00 100644 --- a/remoting/jingle_glue/jingle_client.h +++ b/remoting/jingle_glue/jingle_client.h @@ -8,7 +8,7 @@ #include <string> #include "remoting/jingle_glue/jingle_channel.h" -#include "talk/xmpp/xmppclient.h" +#include "third_party/libjingle/source/talk/xmpp/xmppclient.h" class MessageLoop; @@ -64,10 +64,10 @@ class JingleClient : public base::RefCountedThreadSafe<JingleClient>, // take ownership of |thread| and expects that the thread is started before // the constructor is called, and only stopped after the JingleClient object // has been destructed. - JingleClient(JingleThread* thread); + explicit JingleClient(JingleThread* thread); virtual ~JingleClient(); - // Starts the XMPP connection inialization. Must be called only once. + // Starts the XMPP connection initialization. Must be called only once. // |callback| specifies callback object for the client and must not be NULL. void Init(const std::string& username, const std::string& auth_token, const std::string& auth_token_service, Callback* callback); |