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

Unified Diff: chrome/browser/ui/omnibox/omnibox_navigation_observer.cc

Issue 84063003: Rename WebContentsObserver::NavigateToPendingEntry to DidStartNavigationToPendingEntry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/omnibox/omnibox_navigation_observer.cc
diff --git a/chrome/browser/ui/omnibox/omnibox_navigation_observer.cc b/chrome/browser/ui/omnibox/omnibox_navigation_observer.cc
index 736efa3f80f40c2bbff21954cc68ea45b2592241..d9b85985874c800bc29d5d6d1d712a2ed7600601 100644
--- a/chrome/browser/ui/omnibox/omnibox_navigation_observer.cc
+++ b/chrome/browser/ui/omnibox/omnibox_navigation_observer.cc
@@ -95,7 +95,7 @@ void OmniboxNavigationObserver::Observe(
controller->GetBrowserContext()->GetRequestContext());
}
WebContentsObserver::Observe(controller->GetWebContents());
- // NavigateToPendingEntry() will be called for this load as well.
+ // DidCreatePendingEntry() will be called for this load as well.
}
void OmniboxNavigationObserver::NavigationEntryCommitted(
@@ -113,7 +113,7 @@ void OmniboxNavigationObserver::WebContentsDestroyed(
delete this;
}
-void OmniboxNavigationObserver::NavigateToPendingEntry(
+void OmniboxNavigationObserver::DidCreatePendingEntry(
const GURL& url,
content::NavigationController::ReloadType reload_type) {
if (load_state_ == LOAD_NOT_SEEN) {

Powered by Google App Engine
This is Rietveld 408576698