OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "content/browser/android/load_url_params.h" | 5 #include "content/browser/android/load_url_params.h" |
6 | 6 |
7 #include <jni.h> | 7 #include <jni.h> |
8 | 8 |
9 #include "base/android/jni_string.h" | 9 #include "base/android/jni_string.h" |
10 #include "content/public/browser/navigation_controller.h" | 10 #include "content/public/browser/navigation_controller.h" |
11 #include "content/public/common/url_constants.h" | 11 #include "content/public/common/url_constants.h" |
12 #include "jni/LoadUrlParams_jni.h" | 12 #include "jni/LoadUrlParams_jni.h" |
13 #include "url/gurl.h" | |
14 | 13 |
15 namespace { | 14 namespace { |
16 | 15 |
17 using content::NavigationController; | 16 using content::NavigationController; |
18 | 17 |
19 void RegisterConstants(JNIEnv* env) { | 18 void RegisterConstants(JNIEnv* env) { |
20 Java_LoadUrlParams_initializeConstants(env, | 19 Java_LoadUrlParams_initializeConstants(env, |
21 NavigationController::LOAD_TYPE_DEFAULT, | 20 NavigationController::LOAD_TYPE_DEFAULT, |
22 NavigationController::LOAD_TYPE_BROWSER_INITIATED_HTTP_POST, | 21 NavigationController::LOAD_TYPE_BROWSER_INITIATED_HTTP_POST, |
23 NavigationController::LOAD_TYPE_DATA, | 22 NavigationController::LOAD_TYPE_DATA, |
24 NavigationController::UA_OVERRIDE_INHERIT, | 23 NavigationController::UA_OVERRIDE_INHERIT, |
25 NavigationController::UA_OVERRIDE_FALSE, | 24 NavigationController::UA_OVERRIDE_FALSE, |
26 NavigationController::UA_OVERRIDE_TRUE); | 25 NavigationController::UA_OVERRIDE_TRUE); |
27 } | 26 } |
28 | 27 |
29 } // namespace | 28 } // namespace |
30 | 29 |
31 namespace content { | 30 namespace content { |
32 | 31 |
33 bool RegisterLoadUrlParams(JNIEnv* env) { | 32 bool RegisterLoadUrlParams(JNIEnv* env) { |
34 if (!RegisterNativesImpl(env)) | 33 if (!RegisterNativesImpl(env)) |
35 return false; | 34 return false; |
36 RegisterConstants(env); | 35 RegisterConstants(env); |
37 return true; | 36 return true; |
38 } | 37 } |
39 | 38 |
40 jboolean IsDataScheme(JNIEnv* env, jclass clazz, jstring jurl) { | |
41 GURL url(base::android::ConvertJavaStringToUTF8(env, jurl)); | |
42 return url.SchemeIs(chrome::kDataScheme); | |
43 } | |
44 | |
45 } // namespace content | 39 } // namespace content |
OLD | NEW |