~marcustomlinson/unity-scope-click/lp-1578283

« back to all changes in this revision

Viewing changes to libclickscope/tests/mock_ubuntuone_credentials.h

  • Committer: Marcus Tomlinson
  • Date: 2016-05-09 14:57:51 UTC
  • Revision ID: marcus.tomlinson@canonical.com-20160509145751-p163s2yqdhspz3v8
Revert really-we-want-to-sign-all-the-requests changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2014-2016 Canonical Ltd.
 
2
 * Copyright (C) 2014 Canonical Ltd.
3
3
 *
4
4
 * This program is free software: you can redistribute it and/or modify it
5
5
 * under the terms of the GNU General Public License version 3, as published
27
27
 * files in the program, then also delete it here.
28
28
 */
29
29
 
30
 
#include <token.h>
31
30
 
32
31
class MockCredentialsService : public click::CredentialsService {
33
32
 public:
34
 
    MOCK_METHOD0(getToken, UbuntuOne::Token());
35
 
    MOCK_METHOD0(getCredentials, void());
36
 
    MOCK_METHOD0(invalidateCredentials, void());
 
33
  MOCK_METHOD0(getCredentials,
 
34
      void());
 
35
  MOCK_METHOD0(invalidateCredentials,
 
36
      void());
37
37
};