diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-11 17:36:50 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-11 17:36:50 +0000 |
commit | 4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10 (patch) | |
tree | 588a0a6d8a51fc54a3951690cafb753ec6a75ae6 /chrome/browser/sync/notifier | |
parent | 53976e824cf83d5151b8415b1a0f5c67ec97f7aa (diff) | |
download | chromium_src-4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10.zip chromium_src-4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10.tar.gz chromium_src-4a3dab23cadf0cbe68bd82c06fd970ae8b1d7e10.tar.bz2 |
A large number of style nits in preparation for turning on automated cpplint.py.
Review URL: http://codereview.chromium.org/385023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31669 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/notifier')
-rw-r--r-- | chrome/browser/sync/notifier/communicator/login.cc | 2 | ||||
-rw-r--r-- | chrome/browser/sync/notifier/communicator/mailbox.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/notifier/communicator/login.cc b/chrome/browser/sync/notifier/communicator/login.cc index 90a0e70..de7fd3a 100644 --- a/chrome/browser/sync/notifier/communicator/login.cc +++ b/chrome/browser/sync/notifier/communicator/login.cc @@ -124,7 +124,7 @@ void Login::StartConnection() { single_attempt_->SignalRedirect.connect(this, &Login::OnRedirect); single_attempt_->SignalClientStateChange.connect( this, - &Login::OnClientStateChange) ; + &Login::OnClientStateChange); single_attempt_->SignalUnexpectedDisconnect.connect( this, &Login::OnUnexpectedDisconnect); diff --git a/chrome/browser/sync/notifier/communicator/mailbox.cc b/chrome/browser/sync/notifier/communicator/mailbox.cc index df8d7cf..5cabf04 100644 --- a/chrome/browser/sync/notifier/communicator/mailbox.cc +++ b/chrome/browser/sync/notifier/communicator/mailbox.cc @@ -31,7 +31,7 @@ static void ParseLabelSet(const std::string& text, char* result = new char[text.size() + 1]; char* next_write = result; - while(input_cur < input_end) { + while (input_cur < input_end) { if (*input_cur == '|') { if (next_write != result) { *next_write = '\0'; |