Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Unified Diff: base/message_pump_android.h

Issue 16926003: Updating message pump to store java ptr in class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/message_pump_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_pump_android.h
diff --git a/base/message_pump_android.h b/base/message_pump_android.h
index 5ef4bd6920380a9f8daeea197807a27f19dc1c08..5db032d3cf830f8eeefef9df46b827a49074cb2a 100644
--- a/base/message_pump_android.h
+++ b/base/message_pump_android.h
@@ -7,6 +7,7 @@
#include <jni.h>
+#include "base/android/scoped_java_ref.h"
#include "base/base_export.h"
#include "base/compiler_specific.h"
#include "base/message_pump.h"
@@ -36,6 +37,8 @@ class BASE_EXPORT MessagePumpForUI : public MessagePump {
private:
base::RunLoop* run_loop_;
+ private:
joth 2013/07/01 21:53:01 remove duplicate label
+ base::android::ScopedJavaGlobalRef<jobject> system_message_handler_obj_;
DISALLOW_COPY_AND_ASSIGN(MessagePumpForUI);
};
« no previous file with comments | « no previous file | base/message_pump_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698