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