| Index: chromecast/android/cast_metrics_helper_android.h
|
| diff --git a/chromecast/android/cast_metrics_helper_android.h b/chromecast/android/cast_metrics_helper_android.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..23e0f470d70a3900084dceaa71215eee82018238
|
| --- /dev/null
|
| +++ b/chromecast/android/cast_metrics_helper_android.h
|
| @@ -0,0 +1,26 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_
|
| +#define CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_
|
| +
|
| +#include <jni.h>
|
| +#include <vector>
|
| +
|
| +#include "base/macros.h"
|
| +
|
| +namespace chromecast {
|
| +
|
| +class CastMetricsHelperAndroid {
|
| + public:
|
| + // Registers the JNI methods for CastMetricsHelperAndroid.
|
| + static bool RegisterJni(JNIEnv* env);
|
| +
|
| + private:
|
| + DISALLOW_IMPLICIT_CONSTRUCTORS(CastMetricsHelperAndroid);
|
| +};
|
| +
|
| +} // namespace chromecast
|
| +
|
| +#endif // CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_
|
|
|