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

Unified Diff: content/browser/android/content_view_statics.cc

Issue 10706004: Adds helper methods for WebView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed indenting Created 8 years, 5 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 | « content/browser/android/content_view_statics.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/android/content_view_statics.cc
diff --git a/content/browser/android/content_view_statics.cc b/content/browser/android/content_view_statics.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bac7b1831c0ecc495929f7439e7365dd8d5d81ec
--- /dev/null
+++ b/content/browser/android/content_view_statics.cc
@@ -0,0 +1,36 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <jni.h>
+
+#include "base/android/jni_android.h"
+#include "base/android/jni_string.h"
+#include "base/android/scoped_java_ref.h"
+#include "base/basictypes.h"
+#include "base/logging.h"
+#include "content/browser/android/content_view_statics.h"
+#include "content/common/android/address_parser.h"
+#include "jni/content_view_statics_jni.h"
+
+using base::android::ConvertJavaStringToUTF16;
+using base::android::ConvertUTF16ToJavaString;
+using base::android::ScopedJavaLocalRef;
+
+
+// Return the first substring consisting of the address of a physical location.
+static jstring FindAddress(JNIEnv* env, jclass clazz, jstring addr) {
+ string16 content_16 = ConvertJavaStringToUTF16(env, addr);
+ string16 result_16;
+ if (content::address_parser::FindAddress(content_16, &result_16))
+ return ConvertUTF16ToJavaString(env, result_16).Release();
+ return NULL;
+}
+
+namespace content {
+
+bool RegisterWebViewStatics(JNIEnv* env) {
+ return RegisterNativesImpl(env) >= 0;
+}
+
+} // namespace content
« no previous file with comments | « content/browser/android/content_view_statics.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698