summaryrefslogtreecommitdiffstats
path: root/content/browser/android/tracing_controller_android.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/android/tracing_controller_android.h')
-rw-r--r--content/browser/android/tracing_controller_android.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/browser/android/tracing_controller_android.h b/content/browser/android/tracing_controller_android.h
index 4d70e7b..0cd310e 100644
--- a/content/browser/android/tracing_controller_android.h
+++ b/content/browser/android/tracing_controller_android.h
@@ -6,8 +6,7 @@
#define CONTENT_BROWSER_ANDROID_TRACING_CONTROLLER_ANDROID_H_
#include "base/android/jni_helper.h"
-#include "base/files/file_path.h"
-#include "base/memory/weak_ptr.h"
+#include "base/memory/scoped_ptr.h"
namespace content {
@@ -26,11 +25,12 @@ class TracingControllerAndroid {
private:
~TracingControllerAndroid();
- void OnTracingStopped(const base::FilePath& file_path);
+ void OnTracingStopped();
JavaObjectWeakGlobalRef weak_java_object_;
- base::FilePath file_path_;
- base::WeakPtrFactory<TracingControllerAndroid> weak_factory_;
+
+ class Subscriber;
+ scoped_ptr<Subscriber> subscriber_;
DISALLOW_COPY_AND_ASSIGN(TracingControllerAndroid);
};