summaryrefslogtreecommitdiffstats
path: root/chrome/browser/services/gcm/gcm_account_tracker_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/services/gcm/gcm_account_tracker_unittest.cc')
-rw-r--r--chrome/browser/services/gcm/gcm_account_tracker_unittest.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/chrome/browser/services/gcm/gcm_account_tracker_unittest.cc b/chrome/browser/services/gcm/gcm_account_tracker_unittest.cc
index 2fe1fdb..b9b2b4f 100644
--- a/chrome/browser/services/gcm/gcm_account_tracker_unittest.cc
+++ b/chrome/browser/services/gcm/gcm_account_tracker_unittest.cc
@@ -68,15 +68,14 @@ void VerifyAccountTokens(
class CustomFakeGCMDriver : public FakeGCMDriver {
public:
CustomFakeGCMDriver();
- virtual ~CustomFakeGCMDriver();
+ ~CustomFakeGCMDriver() override;
// GCMDriver overrides:
- virtual void SetAccountTokens(
+ void SetAccountTokens(
const std::vector<GCMClient::AccountTokenInfo>& account_tokens) override;
- virtual void AddConnectionObserver(GCMConnectionObserver* observer) override;
- virtual void RemoveConnectionObserver(
- GCMConnectionObserver* observer) override;
- virtual bool IsConnected() const override { return connected_; }
+ void AddConnectionObserver(GCMConnectionObserver* observer) override;
+ void RemoveConnectionObserver(GCMConnectionObserver* observer) override;
+ bool IsConnected() const override { return connected_; }
// Test results and helpers.
void SetConnected(bool connected);