summaryrefslogtreecommitdiffstats
path: root/jingle/notifier
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 20:36:09 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 20:36:09 +0000
commit08fd501dabd531cc77f2bf458e6f7c3cdc2d8856 (patch)
tree4925f9607b2c32ccfee1618c83730f05acd828f8 /jingle/notifier
parent7a4d60f7dae474e3108dfea842775fdedcd4b3e8 (diff)
downloadchromium_src-08fd501dabd531cc77f2bf458e6f7c3cdc2d8856.zip
chromium_src-08fd501dabd531cc77f2bf458e6f7c3cdc2d8856.tar.gz
chromium_src-08fd501dabd531cc77f2bf458e6f7c3cdc2d8856.tar.bz2
Linux/ChromeOS Chromium style checker cleanup, jingle/ edition.
Automated clean up of style checker errors that were missed due to the plugin not being executed on implementation files. BUG=115047 Review URL: https://chromiumcodereview.appspot.com/12220033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181044 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle/notifier')
-rw-r--r--jingle/notifier/base/gaia_token_pre_xmpp_auth.cc2
-rw-r--r--jingle/notifier/communicator/single_login_attempt_unittest.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/jingle/notifier/base/gaia_token_pre_xmpp_auth.cc b/jingle/notifier/base/gaia_token_pre_xmpp_auth.cc
index 311371a..24aa6a9 100644
--- a/jingle/notifier/base/gaia_token_pre_xmpp_auth.cc
+++ b/jingle/notifier/base/gaia_token_pre_xmpp_auth.cc
@@ -27,7 +27,7 @@ class GaiaCookieMechanism : public buzz::SaslCookieMechanism {
virtual ~GaiaCookieMechanism() {}
- virtual buzz::XmlElement* StartSaslAuth() {
+ virtual buzz::XmlElement* StartSaslAuth() OVERRIDE {
buzz::XmlElement* auth = buzz::SaslCookieMechanism::StartSaslAuth();
// These attributes are necessary for working with non-gmail gaia
// accounts.
diff --git a/jingle/notifier/communicator/single_login_attempt_unittest.cc b/jingle/notifier/communicator/single_login_attempt_unittest.cc
index d32fad5..20a9bf7 100644
--- a/jingle/notifier/communicator/single_login_attempt_unittest.cc
+++ b/jingle/notifier/communicator/single_login_attempt_unittest.cc
@@ -35,7 +35,7 @@ class FakeDelegate : public SingleLoginAttempt::Delegate {
public:
FakeDelegate() : state_(IDLE) {}
- void OnConnect(
+ virtual void OnConnect(
base::WeakPtr<buzz::XmppTaskParentInterface> base_task) OVERRIDE {
state_ = CONNECTED;
base_task_ = base_task;