Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef BASE_TEST_USER_ACTION_TESTER_H_ | |
| 6 #define BASE_TEST_USER_ACTION_TESTER_H_ | |
| 7 | |
| 8 #include <map> | |
| 9 #include <string> | |
| 10 | |
| 11 #include "base/metrics/user_metrics.h" | |
| 12 | |
| 13 namespace base { | |
| 14 | |
| 15 // This class observes and collects user action notifications that are sent | |
| 16 // by the tests, so that they can be examined afterwards for correctness. | |
|
Mark Mentovai
2015/04/13 17:30:00
Is this thread-safe? Does it need to be?
bruthig
2015/04/13 19:21:46
Updated documentation.
There isn't currently a us
| |
| 17 class UserActionTester { | |
| 18 public: | |
| 19 UserActionTester(); | |
| 20 ~UserActionTester(); | |
| 21 | |
| 22 // Returns the number of times the given |user_action| occurred. | |
| 23 int GetActionCount(const std::string& user_action) const; | |
| 24 | |
| 25 // Resets all user action counts to 0. | |
| 26 void ResetCounts(); | |
| 27 | |
| 28 private: | |
| 29 typedef std::map<std::string, int> UserActionCountMap; | |
| 30 | |
| 31 // The callback that is notified when a user actions occurs. | |
| 32 void OnUserAction(const std::string& user_action); | |
| 33 | |
| 34 // A map that tracks the number of times a user action has occurred. | |
| 35 UserActionCountMap count_map_; | |
| 36 | |
| 37 // The callback that is added to the global action callback list. | |
| 38 base::ActionCallback action_callback_; | |
| 39 | |
| 40 DISALLOW_COPY_AND_ASSIGN(UserActionTester); | |
| 41 }; | |
| 42 | |
| 43 } // namespace base | |
| 44 | |
| 45 #endif // BASE_TEST_USER_ACTION_TESTER_H_ | |
| OLD | NEW |