| 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 CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ | |
| 6 #define CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ | |
| 7 | |
| 8 #include <jni.h> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/macros.h" | |
| 12 | |
| 13 namespace chromecast { | |
| 14 | |
| 15 class CastMetricsHelperAndroid { | |
| 16 public: | |
| 17 // Registers the JNI methods for CastMetricsHelperAndroid. | |
| 18 static bool RegisterJni(JNIEnv* env); | |
| 19 | |
| 20 private: | |
| 21 DISALLOW_IMPLICIT_CONSTRUCTORS(CastMetricsHelperAndroid); | |
| 22 }; | |
| 23 | |
| 24 } // namespace chromecast | |
| 25 | |
| 26 #endif // CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ | |
| OLD | NEW |