Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/frame_host/navigation_controller_android.h" | 5 #include "content/browser/frame_host/navigation_controller_android.h" |
| 6 | 6 |
| 7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
| 8 #include "content/public/browser/navigation_controller.h" | 8 #include "content/public/browser/navigation_controller.h" |
| 9 #include "jni/NavigationControllerImpl_jni.h" | 9 #include "jni/NavigationControllerImpl_jni.h" |
| 10 | 10 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 void NavigationControllerAndroid::GoForward(JNIEnv* env, jobject obj) { | 57 void NavigationControllerAndroid::GoForward(JNIEnv* env, jobject obj) { |
| 58 navigation_controller_->GoForward(); | 58 navigation_controller_->GoForward(); |
| 59 } | 59 } |
| 60 | 60 |
| 61 void NavigationControllerAndroid::GoToOffset(JNIEnv* env, | 61 void NavigationControllerAndroid::GoToOffset(JNIEnv* env, |
| 62 jobject obj, | 62 jobject obj, |
| 63 jint offset) { | 63 jint offset) { |
| 64 navigation_controller_->GoToOffset(offset); | 64 navigation_controller_->GoToOffset(offset); |
| 65 } | 65 } |
| 66 | 66 |
| 67 void NavigationControllerAndroid::LoadIfNecessary(JNIEnv* env, jobject obj) { | |
| 68 navigation_controller_->LoadIfNecessary(); | |
| 69 } | |
| 70 | |
| 71 void NavigationControllerAndroid::ContinuePendingReload(JNIEnv* env, | |
| 72 jobject obj) { | |
| 73 navigation_controller_->ContinuePendingReload(); | |
| 74 } | |
| 75 | |
| 76 void NavigationControllerAndroid::Reload(JNIEnv* env, jobject obj, | |
|
Yaron
2014/07/02 17:32:39
nit: all params on one line or separate lines for
AKVT
2014/07/05 10:32:16
Done.
| |
| 77 jboolean check_for_repost) { | |
| 78 navigation_controller_->Reload(check_for_repost); | |
| 79 } | |
| 80 | |
| 81 void NavigationControllerAndroid::ReloadIgnoringCache(JNIEnv* env, | |
| 82 jobject obj, jboolean check_for_repost) { | |
|
Yaron
2014/07/02 17:32:39
same
AKVT
2014/07/05 10:32:17
Done.
| |
| 83 navigation_controller_->ReloadIgnoringCache(check_for_repost); | |
| 84 } | |
| 85 | |
| 86 void NavigationControllerAndroid::RequestRestoreLoad(JNIEnv* env, jobject obj) { | |
| 87 navigation_controller_->SetNeedsReload(); | |
| 88 } | |
| 89 | |
| 90 void NavigationControllerAndroid::CancelPendingReload(JNIEnv* env, | |
| 91 jobject obj) { | |
| 92 navigation_controller_->CancelPendingReload(); | |
| 93 } | |
| 94 | |
| 67 void NavigationControllerAndroid::GoToNavigationIndex(JNIEnv* env, | 95 void NavigationControllerAndroid::GoToNavigationIndex(JNIEnv* env, |
| 68 jobject obj, | 96 jobject obj, |
| 69 jint index) { | 97 jint index) { |
| 70 navigation_controller_->GoToIndex(index); | 98 navigation_controller_->GoToIndex(index); |
| 71 } | 99 } |
| 72 | 100 |
| 73 } // namespace content | 101 } // namespace content |
| OLD | NEW |