| Index: chrome/browser/rlz/rlz_extension_apitest.cc
|
| diff --git a/chrome/browser/rlz/rlz_extension_apitest.cc b/chrome/browser/rlz/rlz_extension_apitest.cc
|
| index 7a1810b717d7e58b59effba3b9925e5ad8b6ef76..f60d413e8c68e61892ab4444ad28e639ef45c67e 100644
|
| --- a/chrome/browser/rlz/rlz_extension_apitest.cc
|
| +++ b/chrome/browser/rlz/rlz_extension_apitest.cc
|
| @@ -19,14 +19,19 @@
|
| #endif
|
|
|
| class MockRlzSendFinancialPingFunction : public RlzSendFinancialPingFunction {
|
| - virtual bool RunImpl();
|
| -
|
| - static int expected_count_;
|
| -
|
| public:
|
| static int expected_count() {
|
| return expected_count_;
|
| }
|
| +
|
| + protected:
|
| + virtual ~MockRlzSendFinancialPingFunction() {}
|
| +
|
| + // ExtensionFunction
|
| + virtual bool RunImpl() OVERRIDE;
|
| +
|
| + private:
|
| + static int expected_count_;
|
| };
|
|
|
| int MockRlzSendFinancialPingFunction::expected_count_ = 0;
|
|
|