Chromium Code Reviews| Index: chrome/browser/chromeos/external_metrics.h |
| =================================================================== |
| --- chrome/browser/chromeos/external_metrics.h (revision 69359) |
| +++ chrome/browser/chromeos/external_metrics.h (working copy) |
| @@ -57,6 +57,13 @@ |
| // Passes an action event to the UMA service. |
| void RecordAction(const char* action_name); |
| + // Records an external crash of the given string description to |
| + // UMA service on the UI thread. |
| + void RecordCrashUI(const std::string &action_string); |
|
petkov
2011/01/06 18:50:36
I think they use */& to the left (std::string&) in
kmixter1
2011/01/14 00:07:02
Done.
|
| + |
| + // Records an external crash of the given string description. |
| + void RecordCrash(const std::string &crash_kind); |
| + |
| // Passes an histogram event to the UMA service. |histogram_data| is in the |
| // form <histogram-name> <sample> <min> <max> <buckets_count>. |
| void RecordHistogram(const char* histogram_data); |