HomeSort by relevance Sort by last modified time
    Searched refs:check_for_repost (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/content/public/browser/
navigation_controller.h 322 // Reloads the current entry. If |check_for_repost| is true and the current
326 virtual void Reload(bool check_for_repost) = 0;
329 virtual void ReloadIgnoringCache(bool check_for_repost) = 0;
334 virtual void ReloadOriginalRequestURL(bool check_for_repost) = 0;
  /external/chromium_org/content/browser/web_contents/
navigation_controller_impl.h 83 virtual void Reload(bool check_for_repost) OVERRIDE;
84 virtual void ReloadIgnoringCache(bool check_for_repost) OVERRIDE;
85 virtual void ReloadOriginalRequestURL(bool check_for_repost) OVERRIDE;
266 void ReloadInternal(bool check_for_repost, ReloadType reload_type);
navigation_controller_impl.cc 256 void NavigationControllerImpl::Reload(bool check_for_repost) {
257 ReloadInternal(check_for_repost, RELOAD);
259 void NavigationControllerImpl::ReloadIgnoringCache(bool check_for_repost) {
260 ReloadInternal(check_for_repost, RELOAD_IGNORING_CACHE);
262 void NavigationControllerImpl::ReloadOriginalRequestURL(bool check_for_repost) {
263 ReloadInternal(check_for_repost, RELOAD_ORIGINAL_REQUEST_URL);
266 void NavigationControllerImpl::ReloadInternal(bool check_for_repost,
306 if (g_check_for_repost && check_for_repost &&
310 // with check_for_repost = false.
    [all...]
  /external/chromium_org/chrome/browser/automation/
automation_provider.cc 678 const bool check_for_repost = true; local
679 tab->Reload(check_for_repost);
  /external/chromium/chrome/browser/automation/
automation_provider.cc 684 const bool check_for_repost = true; local
685 tab->Reload(check_for_repost);
    [all...]

Completed in 957 milliseconds