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 ASH_METRICS_USER_METRICS_RECORDER_PROXY_H_ | |
| 6 #define ASH_METRICS_USER_METRICS_RECORDER_PROXY_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "ash/ash_export.h" | |
| 11 #include "base/macros.h" | |
| 12 | |
| 13 namespace ash { | |
| 14 | |
| 15 class ASH_EXPORT UserMetricsRecorderProxy { | |
|
oshima
2015/05/15 17:13:36
you can call ash/metrics from chrome/browser/ui/as
bruthig
2015/05/15 19:11:27
Done.
| |
| 16 public: | |
| 17 virtual ~UserMetricsRecorderProxy() {} | |
| 18 }; | |
| 19 | |
| 20 } // namespace ash | |
| 21 | |
| 22 #endif // ASH_METRICS_USER_METRICS_RECORDER_PROXY_H_ | |
| OLD | NEW |