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

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2439903003: PlzNavigate: Allow frames to fallback to alternative content. (Closed)
Patch Set: Using frameloader::loadFail. Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 2041 matching lines...) Expand 10 before | Expand all | Expand 10 after
2052 frameRequest.setReplacesCurrentItem(replace); 2052 frameRequest.setReplacesCurrentItem(replace);
2053 if (isClientRedirect) 2053 if (isClientRedirect)
2054 frameRequest.setClientRedirect(ClientRedirectPolicy::ClientRedirect); 2054 frameRequest.setClientRedirect(ClientRedirectPolicy::ClientRedirect);
2055 2055
2056 HistoryItem* historyItem = item; 2056 HistoryItem* historyItem = item;
2057 frame()->loader().load( 2057 frame()->loader().load(
2058 frameRequest, static_cast<FrameLoadType>(webFrameLoadType), historyItem, 2058 frameRequest, static_cast<FrameLoadType>(webFrameLoadType), historyItem,
2059 static_cast<HistoryLoadType>(webHistoryLoadType)); 2059 static_cast<HistoryLoadType>(webHistoryLoadType));
2060 } 2060 }
2061 2061
2062 bool WebLocalFrameImpl::canRenderFallbackContent() const {
2063 DCHECK(frame());
2064 return frame()->owner() && frame()->owner()->canRenderFallbackContent();
2065 }
2066
2067 void WebLocalFrameImpl::loadFailed(const WebURLError& error) {
2068 DCHECK(frame());
2069 FrameLoader& frameloader = frame()->loader();
2070 frameloader.loadFailed(frameloader.documentLoader(), error);
2071 }
2072
2062 bool WebLocalFrameImpl::isLoading() const { 2073 bool WebLocalFrameImpl::isLoading() const {
2063 if (!frame() || !frame()->document()) 2074 if (!frame() || !frame()->document())
2064 return false; 2075 return false;
2065 return frame()->loader().stateMachine()->isDisplayingInitialEmptyDocument() || 2076 return frame()->loader().stateMachine()->isDisplayingInitialEmptyDocument() ||
2066 frame()->loader().provisionalDocumentLoader() || 2077 frame()->loader().provisionalDocumentLoader() ||
2067 !frame()->document()->loadEventFinished(); 2078 !frame()->document()->loadEventFinished();
2068 } 2079 }
2069 2080
2070 bool WebLocalFrameImpl:: 2081 bool WebLocalFrameImpl::
2071 isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() const { 2082 isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() const {
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
2392 feature = UseCounter::ChromeLoadTimesNpnNegotiatedProtocol; 2403 feature = UseCounter::ChromeLoadTimesNpnNegotiatedProtocol;
2393 } else if (metric == "wasAlternateProtocolAvailable") { 2404 } else if (metric == "wasAlternateProtocolAvailable") {
2394 feature = UseCounter::ChromeLoadTimesWasAlternateProtocolAvailable; 2405 feature = UseCounter::ChromeLoadTimesWasAlternateProtocolAvailable;
2395 } else if (metric == "connectionInfo") { 2406 } else if (metric == "connectionInfo") {
2396 feature = UseCounter::ChromeLoadTimesConnectionInfo; 2407 feature = UseCounter::ChromeLoadTimesConnectionInfo;
2397 } 2408 }
2398 UseCounter::count(frame(), feature); 2409 UseCounter::count(frame(), feature);
2399 } 2410 }
2400 2411
2401 } // namespace blink 2412 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698