Searched defs:check_for_repost (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/content/browser/frame_host/
H A Dnavigation_controller_android.cc132 jboolean check_for_repost) {
133 navigation_controller_->Reload(check_for_repost);
139 jboolean check_for_repost) {
140 navigation_controller_->ReloadIgnoringCache(check_for_repost);
130 Reload(JNIEnv* env, jobject obj, jboolean check_for_repost) argument
136 ReloadIgnoringCache( JNIEnv* env, jobject obj, jboolean check_for_repost) argument
H A Dnavigation_controller_impl.cc272 void NavigationControllerImpl::Reload(bool check_for_repost) { argument
273 ReloadInternal(check_for_repost, RELOAD);
275 void NavigationControllerImpl::ReloadIgnoringCache(bool check_for_repost) { argument
276 ReloadInternal(check_for_repost, RELOAD_IGNORING_CACHE);
278 void NavigationControllerImpl::ReloadOriginalRequestURL(bool check_for_repost) { argument
279 ReloadInternal(check_for_repost, RELOAD_ORIGINAL_REQUEST_URL);
282 void NavigationControllerImpl::ReloadInternal(bool check_for_repost, argument
332 if (g_check_for_repost && check_for_repost &&
336 // with check_for_repost = false.

Completed in 82 milliseconds