| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ | 5 #ifndef CHROMECAST_BROWSER_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ |
| 6 #define CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ | 6 #define CHROMECAST_BROWSER_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 | 12 |
| 13 namespace chromecast { | 13 namespace chromecast { |
| 14 | 14 namespace shell { |
| 15 class CastMetricsHelperAndroid { | 15 class CastMetricsHelperAndroid { |
| 16 public: | 16 public: |
| 17 // Registers the JNI methods for CastMetricsHelperAndroid. | 17 // Registers the JNI methods for CastMetricsHelperAndroid. |
| 18 static bool RegisterJni(JNIEnv* env); | 18 static bool RegisterJni(JNIEnv* env); |
| 19 | 19 |
| 20 private: | 20 private: |
| 21 DISALLOW_IMPLICIT_CONSTRUCTORS(CastMetricsHelperAndroid); | 21 DISALLOW_IMPLICIT_CONSTRUCTORS(CastMetricsHelperAndroid); |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 } // namespace shell |
| 24 } // namespace chromecast | 25 } // namespace chromecast |
| 25 | 26 |
| 26 #endif // CHROMECAST_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ | 27 #endif // CHROMECAST_BROWSER_ANDROID_CAST_METRICS_HELPER_ANDROID_H_ |
| OLD | NEW |