| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_BROWSER_ANDROID_TRACING_CONTROLLER_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_TRACING_CONTROLLER_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_ANDROID_TRACING_CONTROLLER_ANDROID_H_ | 6 #define CONTENT_BROWSER_ANDROID_TRACING_CONTROLLER_ANDROID_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/android/jni_weak_ref.h" | 10 #include "base/android/jni_weak_ref.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 | 15 |
| 16 // This class implements the native methods of TracingControllerAndroid.java | 16 // This class implements the native methods of TracingControllerAndroid.java |
| 17 class TracingControllerAndroid { | 17 class TracingControllerAndroid { |
| 18 public: | 18 public: |
| 19 TracingControllerAndroid(JNIEnv* env, jobject obj); | 19 TracingControllerAndroid(JNIEnv* env, jobject obj); |
| 20 void Destroy(JNIEnv* env, jobject obj); | 20 void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& obj); |
| 21 | 21 |
| 22 bool StartTracing(JNIEnv* env, | 22 bool StartTracing(JNIEnv* env, |
| 23 jobject obj, | 23 const base::android::JavaParamRef<jobject>& obj, |
| 24 jstring categories, | 24 const base::android::JavaParamRef<jstring>& categories, |
| 25 jstring trace_options); | 25 const base::android::JavaParamRef<jstring>& trace_options); |
| 26 void StopTracing(JNIEnv* env, jobject obj, jstring jfilepath); | 26 void StopTracing(JNIEnv* env, |
| 27 bool GetKnownCategoryGroupsAsync(JNIEnv* env, jobject obj); | 27 const base::android::JavaParamRef<jobject>& obj, |
| 28 const base::android::JavaParamRef<jstring>& jfilepath); |
| 29 bool GetKnownCategoryGroupsAsync( |
| 30 JNIEnv* env, |
| 31 const base::android::JavaParamRef<jobject>& obj); |
| 28 static void GenerateTracingFilePath(base::FilePath* file_path); | 32 static void GenerateTracingFilePath(base::FilePath* file_path); |
| 29 | 33 |
| 30 private: | 34 private: |
| 31 ~TracingControllerAndroid(); | 35 ~TracingControllerAndroid(); |
| 32 void OnTracingStopped(); | 36 void OnTracingStopped(); |
| 33 void OnKnownCategoriesReceived( | 37 void OnKnownCategoriesReceived( |
| 34 const std::set<std::string>& categories_received); | 38 const std::set<std::string>& categories_received); |
| 35 | 39 |
| 36 JavaObjectWeakGlobalRef weak_java_object_; | 40 JavaObjectWeakGlobalRef weak_java_object_; |
| 37 base::WeakPtrFactory<TracingControllerAndroid> weak_factory_; | 41 base::WeakPtrFactory<TracingControllerAndroid> weak_factory_; |
| 38 | 42 |
| 39 DISALLOW_COPY_AND_ASSIGN(TracingControllerAndroid); | 43 DISALLOW_COPY_AND_ASSIGN(TracingControllerAndroid); |
| 40 }; | 44 }; |
| 41 | 45 |
| 42 // Register this class's native methods through jni. | 46 // Register this class's native methods through jni. |
| 43 bool RegisterTracingControllerAndroid(JNIEnv* env); | 47 bool RegisterTracingControllerAndroid(JNIEnv* env); |
| 44 | 48 |
| 45 } // namespace content | 49 } // namespace content |
| 46 | 50 |
| 47 #endif // CONTENT_BROWSER_ANDROID_TRACING_CONTROLLER_ANDROID_H_ | 51 #endif // CONTENT_BROWSER_ANDROID_TRACING_CONTROLLER_ANDROID_H_ |
| OLD | NEW |