summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormichaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-02 16:47:46 +0000
committermichaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-02 16:47:46 +0000
commit051c9757323919759d01d216e396fcc2a4bff855 (patch)
tree10912270a9ee22c6993825a2edae9ed1783cce09
parentb1eed66ff9bc1dd0c2c319c8ff42f8f0d1abc1b3 (diff)
downloadchromium_src-051c9757323919759d01d216e396fcc2a4bff855.zip
chromium_src-051c9757323919759d01d216e396fcc2a4bff855.tar.gz
chromium_src-051c9757323919759d01d216e396fcc2a4bff855.tar.bz2
Added the comment for GetApplicationContext()
BUG= TEST= Review URL: http://codereview.chromium.org/7551018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95094 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/android/jni_android.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/android/jni_android.h b/base/android/jni_android.h
index 0e34724..9a15895 100644
--- a/base/android/jni_android.h
+++ b/base/android/jni_android.h
@@ -27,6 +27,7 @@ void InitVM(JavaVM* vm);
// TODO: We might combine InitVM() and InitApplicationContext() into one method.
void InitApplicationContext(jobject context);
+// Returns the application context assigned by InitApplicationContext().
jobject GetApplicationContext();
// Get the method ID for a method. Will clear the pending Java
@@ -42,4 +43,5 @@ bool CheckException(JNIEnv* env);
} // namespace android
} // namespace base
-#endif
+
+#endif // BASE_ANDROID_JNI_ANDROID_H_