Changeset 28399 in webkit
- Timestamp:
- Dec 4, 2007, 11:47:13 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r28397 r28399 1 2007-12-04 Darin Adler <darin@apple.com> 2 3 Reviewed by Kevin Decker. 4 5 - added an assertion for a situation that leads to a Safari assertion: 6 a commit that is not followed by a load completion 7 8 - removed some unneeded FrameLoader stuff -- maybe some day we'll get this 9 class cut down to size 10 11 * loader/FrameLoader.cpp: 12 (WebCore::FrameLoader::FrameLoader): Added boolean for assertion. 13 (WebCore::FrameLoader::checkLoadCompleteForThisFrame): Added code to assert 14 that we already sent a commit before sending a complete. 15 (WebCore::FrameLoader::continueFragmentScrollAfterNavigationPolicy): Call 16 client directly instead of indirecting through a function. 17 (WebCore::FrameLoader::loadItem): Ditto. 18 (WebCore::FrameLoader::goToItem): Ditto. 19 (WebCore::FrameLoader::addHistoryForCurrentLocation): Get the private browsing 20 state from Settings instead of FrameLoaderClient. Also call client directly 21 instead of indirecting through a function. 22 (WebCore::FrameLoader::updateHistoryForReload): Call client directly instead 23 of indirecting through a function. 24 (WebCore::FrameLoader::dispatchDidCommitLoad): Added code to assert 25 that we did not yet send a commit and set the flag that will be used to check 26 that we don't do this twice in a row without an intervening completion call. 27 28 * loader/FrameLoader.h: Added a boolean for the assertion. Removed six 29 now-unneeded functions. 30 31 * loader/FrameLoaderClient.h: Removed now-unneeded privateBrowsingEnabled function. 32 33 * loader/ResourceLoader.cpp: (WebCore::ResourceLoader::willCacheResponse): Get 34 the private browsing state from Settings instead of FrameLoaderClient. 35 36 * svg/graphics/SVGImageEmptyClients.h: Removed obsolete privateBrowsingEnabled. 37 1 38 2007-12-03 Antti Koivisto <antti@apple.com> 2 39 -
trunk/WebCore/loader/FrameLoader.cpp
r28349 r28399 254 254 , m_committedFirstRealDocumentLoad(false) 255 255 , m_didPerformFirstNavigation(false) 256 #ifndef NDEBUG 257 , m_didDispatchDidCommitLoad(false) 258 #endif 256 259 #if USE(LOW_BANDWIDTH_DISPLAY) 257 260 , m_useLowBandwidthDisplay(true) … … 2651 2654 } 2652 2655 2653 bool FrameLoader::privateBrowsingEnabled() const2654 {2655 return m_client->privateBrowsingEnabled();2656 }2657 2658 2656 void FrameLoader::clientRedirectCancelledOrFinished(bool cancelWithLoadInProgress) 2659 2657 { … … 2969 2967 2970 2968 const ResourceError& error = dl->mainDocumentError(); 2969 #ifndef NDEBUG 2970 ASSERT(m_didDispatchDidCommitLoad); 2971 m_didDispatchDidCommitLoad = false; 2972 #endif 2971 2973 if (!error.isNull()) 2972 2974 m_client->dispatchDidFailLoad(error); … … 3195 3197 #endif 3196 3198 m_client->detachedFromParent4(); 3197 }3198 3199 void FrameLoader::dispatchDidChangeLocationWithinPage()3200 {3201 m_client->dispatchDidChangeLocationWithinPage();3202 }3203 3204 void FrameLoader::dispatchDidFinishLoadToClient()3205 {3206 m_client->didFinishLoad();3207 }3208 3209 void FrameLoader::updateGlobalHistoryForStandardLoad(const KURL& url)3210 {3211 m_client->updateGlobalHistoryForStandardLoad(url);3212 }3213 3214 void FrameLoader::updateGlobalHistoryForReload(const KURL& url)3215 {3216 m_client->updateGlobalHistoryForReload(url);3217 }3218 3219 bool FrameLoader::shouldGoToHistoryItem(HistoryItem* item) const3220 {3221 return m_client->shouldGoToHistoryItem(item);3222 3199 } 3223 3200 … … 3449 3426 checkLoadComplete(); 3450 3427 3451 dispatchDidChangeLocationWithinPage();3428 m_client->dispatchDidChangeLocationWithinPage(); 3452 3429 m_client->didFinishLoad(); 3453 3430 } … … 4018 3995 documentLoader()->replaceRequestURLForAnchorScroll(itemURL); 4019 3996 4020 dispatchDidChangeLocationWithinPage();3997 m_client->dispatchDidChangeLocationWithinPage(); 4021 3998 4022 3999 // FrameLoaderClient::didFinishLoad() tells the internal load delegate the load finished with no error 4023 dispatchDidFinishLoadToClient();4000 m_client->didFinishLoad(); 4024 4001 } else { 4025 4002 // Remember this item so we can traverse any child items as child frames load … … 4134 4111 // <rdar://problem/3979539> back/forward cache navigations should consult policy delegate 4135 4112 if (Page* page = m_frame->page()) 4136 if ( shouldGoToHistoryItem(targetItem)) {4113 if (m_client->shouldGoToHistoryItem(targetItem)) { 4137 4114 BackForwardList* bfList = page->backForwardList(); 4138 4115 HistoryItem* currentItem = bfList->currentItem(); … … 4223 4200 void FrameLoader::addHistoryForCurrentLocation() 4224 4201 { 4225 if (! privateBrowsingEnabled()) {4202 if (!m_frame->settings()->privateBrowsingEnabled()) { 4226 4203 // FIXME: <rdar://problem/4880065> - This will be a hook into the WebCore global history, and this loader/client call will be removed 4227 updateGlobalHistoryForStandardLoad(documentLoader()->urlForHistory());4204 m_client->updateGlobalHistoryForStandardLoad(documentLoader()->urlForHistory()); 4228 4205 } 4229 4206 addBackForwardItemClippedAtTarget(true); … … 4303 4280 // FIXME: <rdar://problem/4880065> - This will be a hook into the WebCore global history, and this loader/client call will be removed 4304 4281 // Update the last visited time. Mostly interesting for URL autocompletion statistics. 4305 updateGlobalHistoryForReload(documentLoader()->originalURL());4282 m_client->updateGlobalHistoryForReload(documentLoader()->originalURL()); 4306 4283 } 4307 4284 … … 4657 4634 void FrameLoader::dispatchDidCommitLoad() 4658 4635 { 4636 #ifndef NDEBUG 4637 ASSERT(!m_didDispatchDidCommitLoad); 4638 m_didDispatchDidCommitLoad = true; 4639 #endif 4640 4659 4641 m_client->dispatchDidCommitLoad(); 4660 4642 -
trunk/WebCore/loader/FrameLoader.h
r28343 r28399 202 202 void didFinishLoad(ResourceLoader*); 203 203 void didFailToLoad(ResourceLoader*, const ResourceError&); 204 bool privateBrowsingEnabled() const;205 204 const ResourceRequest& originalRequest() const; 206 205 const ResourceRequest& initialRequest() const; … … 394 393 395 394 void setTitle(const String&); 396 void dispatchDidChangeLocationWithinPage(); 397 398 void dispatchDidFinishLoadToClient(); 399 void updateGlobalHistoryForStandardLoad(const KURL&); 400 void updateGlobalHistoryForReload(const KURL&); 401 bool shouldGoToHistoryItem(HistoryItem*) const; 395 402 396 bool shouldTreatURLAsSameAsCurrent(const KURL&) const; 403 397 … … 648 642 bool m_didPerformFirstNavigation; 649 643 644 #ifndef NDEBUG 645 bool m_didDispatchDidCommitLoad; 646 #endif 647 650 648 #if USE(LOW_BANDWIDTH_DISPLAY) 651 649 // whether to use low bandwidth dislay, set by client … … 661 659 String m_pendingSourceInLowBandwidthDisplay; 662 660 HashSet<CachedResource*> m_externalRequestsInLowBandwidthDisplay; 663 #endif 661 #endif 664 662 }; 665 663 -
trunk/WebCore/loader/FrameLoaderClient.h
r27612 r28399 79 79 virtual bool hasHTMLView() const { return true; } 80 80 81 virtual bool privateBrowsingEnabled() const = 0;82 83 81 virtual void makeDocumentView() = 0; 84 82 virtual void makeRepresentation(DocumentLoader*) = 0; -
trunk/WebCore/loader/ResourceLoader.cpp
r25274 r28399 1 1 /* 2 * Copyright (C) 2006 Apple Computer, Inc.All rights reserved.2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 3 3 * (C) 2007 Graham Dennis (graham.dennis@gmail.com) 4 4 * … … 38 38 #include "ResourceHandle.h" 39 39 #include "ResourceError.h" 40 #include "Settings.h" 40 41 #include "SharedBuffer.h" 41 42 … … 396 397 { 397 398 // When in private browsing mode, prevent caching to disk 398 if (policy == StorageAllowed && frameLoader()->privateBrowsingEnabled())399 if (policy == StorageAllowed && m_frame->settings()->privateBrowsingEnabled()) 399 400 policy = StorageAllowedInMemoryOnly; 400 401 } -
trunk/WebCore/svg/graphics/SVGImageEmptyClients.h
r28319 r28399 129 129 virtual bool hasFrameView() const { return true; } // ditto 130 130 131 virtual bool privateBrowsingEnabled() const { return false; }132 133 131 virtual void makeDocumentView() { } 134 132 virtual void makeRepresentation(DocumentLoader*) { } -
trunk/WebKit/gtk/ChangeLog
r28396 r28399 1 2007-12-04 Darin Adler <darin@apple.com> 2 3 Reviewed by Kevin Decker. 4 5 * WebCoreSupport/FrameLoaderClientGtk.cpp: Removed obsolete privateBrowsingEnabled. 6 * WebCoreSupport/FrameLoaderClientGtk.h: Ditto. 7 1 8 2007-12-04 Michael Natterer <mitch@imendio.com> 2 9 -
trunk/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp
r28336 r28399 428 428 } 429 429 430 bool FrameLoaderClient::privateBrowsingEnabled() const { notImplemented(); return false; }431 430 void FrameLoaderClient::makeDocumentView() { notImplemented(); } 432 431 void FrameLoaderClient::makeRepresentation(DocumentLoader*) { notImplemented(); } -
trunk/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h
r28273 r28399 47 47 virtual bool hasWebView() const; 48 48 virtual bool hasFrameView() const; 49 50 virtual bool privateBrowsingEnabled() const;51 49 52 50 virtual void makeDocumentView(); -
trunk/WebKit/mac/ChangeLog
r28383 r28399 1 2007-12-04 Darin Adler <darin@apple.com> 2 3 Reviewed by Kevin Decker. 4 5 * WebCoreSupport/WebFrameLoaderClient.h: Removed obsolete privateBrowsingEnabled. 6 * WebCoreSupport/WebFrameLoaderClient.mm: Ditto. 7 * WebKit.order: Ditto. 8 1 9 2007-12-03 Dan Bernstein <mitz@apple.com> 2 10 -
trunk/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.h
r27616 r28399 63 63 virtual bool hasFrameView() const; // ditto 64 64 65 virtual bool privateBrowsingEnabled() const;66 67 65 virtual void makeDocumentView(); 68 66 virtual void makeRepresentation(WebCore::DocumentLoader*); -
trunk/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm
r28365 r28399 148 148 } 149 149 150 bool WebFrameLoaderClient::privateBrowsingEnabled() const151 {152 return [[getWebView(m_webFrame.get()) preferences] privateBrowsingEnabled];153 }154 155 150 void WebFrameLoaderClient::makeDocumentView() 156 151 { -
trunk/WebKit/mac/WebKit.order
r27496 r28399 430 430 __ZN20WebDocumentLoaderMac15detachFromFrameEv 431 431 __ZN20WebDocumentLoaderMac17releaseDataSourceEv 432 __ZNK20WebFrameLoaderClient22privateBrowsingEnabledEv433 432 __ZN20WebFrameLoaderClient34updateGlobalHistoryForStandardLoadERKN7WebCore4KURLE 434 433 +[WebHistory optionalSharedHistory] -
trunk/WebKit/qt/ChangeLog
r28387 r28399 1 2007-12-04 Darin Adler <darin@apple.com> 2 3 Reviewed by Kevin Decker. 4 5 * WebCoreSupport/FrameLoaderClientQt.cpp: Removed obsolete privateBrowsingEnabled. 6 * WebCoreSupport/FrameLoaderClientQt.h: Ditto. 7 1 8 2007-12-04 Holger Hans Peter Freyther <holger.freyther@trolltech.com> 2 9 -
trunk/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp
r27915 r28399 160 160 161 161 162 bool FrameLoaderClientQt::privateBrowsingEnabled() const163 {164 notImplemented();165 return false;166 }167 168 169 162 void FrameLoaderClientQt::makeDocumentView() 170 163 { -
trunk/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h
r27780 r28399 81 81 virtual void invalidateCurrentItemPageCache(); 82 82 83 virtual bool privateBrowsingEnabled() const;84 85 83 virtual void makeDocumentView(); 86 84 virtual void makeRepresentation(DocumentLoader*); -
trunk/WebKit/win/ChangeLog
r28391 r28399 1 2007-12-04 Darin Adler <darin@apple.com> 2 3 Reviewed by Kevin Decker. 4 5 * WebFrame.cpp: Removed obsolete privateBrowsingEnabled. 6 * WebFrame.h: Ditto. 7 1 8 2007-12-04 Adam Roben <aroben@apple.com> 2 9 -
trunk/WebKit/win/WebFrame.cpp
r28334 r28399 1494 1494 } 1495 1495 1496 bool WebFrame::privateBrowsingEnabled() const1497 {1498 BOOL privateBrowsingEnabled = FALSE;1499 COMPtr<IWebPreferences> preferences;1500 if (SUCCEEDED(d->webView->preferences(&preferences)))1501 preferences->privateBrowsingEnabled(&privateBrowsingEnabled);1502 return !!privateBrowsingEnabled;1503 }1504 1505 1496 void WebFrame::makeDocumentView() 1506 1497 { -
trunk/WebKit/win/WebFrame.h
r27612 r28399 230 230 virtual bool hasWebView() const; 231 231 virtual bool hasFrameView() const; 232 virtual bool privateBrowsingEnabled() const;233 232 virtual void makeDocumentView(); 234 233 virtual void makeRepresentation(WebCore::DocumentLoader*); -
trunk/WebKit/wx/ChangeLog
r28339 r28399 1 2007-12-04 Darin Adler <darin@apple.com> 2 3 Reviewed by Kevin Decker. 4 5 * WebKitSupport/FrameLoaderClientWx.cpp: Removed obsolete privateBrowsingEnabled. 6 * WebKitSupport/FrameLoaderClientWx.h: Ditto. 7 1 8 2007-12-03 Mark Rowe <mrowe@apple.com> 2 9 -
trunk/WebKit/wx/WebKitSupport/FrameLoaderClientWx.cpp
r27899 r28399 132 132 133 133 134 bool FrameLoaderClientWx::privateBrowsingEnabled() const135 {136 notImplemented();137 return false;138 }139 140 141 134 void FrameLoaderClientWx::makeDocumentView() 142 135 { -
trunk/WebKit/wx/WebKitSupport/FrameLoaderClientWx.h
r27899 r28399 66 66 virtual bool provisionalItemIsTarget() const; 67 67 68 virtual bool privateBrowsingEnabled() const;69 70 68 virtual void makeDocumentView(); 71 69 virtual void makeRepresentation(DocumentLoader*);
Note:
See TracChangeset
for help on using the changeset viewer.