| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_NAVIGATION_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_NAVIGATION_OBSERVER_H_ |
| 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_NAVIGATION_OBSERVER_H_ | 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_NAVIGATION_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 // content::NotificationObserver: | 75 // content::NotificationObserver: |
| 76 void Observe(int type, | 76 void Observe(int type, |
| 77 const content::NotificationSource& source, | 77 const content::NotificationSource& source, |
| 78 const content::NotificationDetails& details) override; | 78 const content::NotificationDetails& details) override; |
| 79 | 79 |
| 80 // content::WebContentsObserver: | 80 // content::WebContentsObserver: |
| 81 void DidStartNavigationToPendingEntry( | 81 void DidStartNavigationToPendingEntry( |
| 82 const GURL& url, | 82 const GURL& url, |
| 83 content::NavigationController::ReloadType reload_type) override; | 83 content::NavigationController::ReloadType reload_type) override; |
| 84 void DidFailProvisionalLoad(content::RenderFrameHost* render_frame_host, |
| 85 const GURL& validated_url, |
| 86 int error_code, |
| 87 const base::string16& error_description) override; |
| 84 void NavigationEntryCommitted( | 88 void NavigationEntryCommitted( |
| 85 const content::LoadCommittedDetails& load_details) override; | 89 const content::LoadCommittedDetails& load_details) override; |
| 86 void WebContentsDestroyed() override; | 90 void WebContentsDestroyed() override; |
| 87 | 91 |
| 88 // net::URLFetcherDelegate: | 92 // net::URLFetcherDelegate: |
| 89 void OnURLFetchComplete(const net::URLFetcher* source) override; | 93 void OnURLFetchComplete(const net::URLFetcher* source) override; |
| 90 | 94 |
| 91 // Once the load has committed and any URL fetch has completed, this displays | 95 // Once the load has committed and any URL fetch has completed, this displays |
| 92 // the alternate nav infobar if necessary, and deletes |this|. | 96 // the alternate nav infobar if necessary, and deletes |this|. |
| 93 void OnAllLoadingFinished(); | 97 void OnAllLoadingFinished(); |
| 94 | 98 |
| 95 const base::string16 text_; | 99 const base::string16 text_; |
| 96 const AutocompleteMatch match_; | 100 const AutocompleteMatch match_; |
| 97 const AutocompleteMatch alternate_nav_match_; | 101 const AutocompleteMatch alternate_nav_match_; |
| 98 scoped_refptr<ShortcutsBackend> shortcuts_backend_; // NULL in incognito. | 102 scoped_refptr<ShortcutsBackend> shortcuts_backend_; // NULL in incognito. |
| 99 scoped_ptr<net::URLFetcher> fetcher_; | 103 scoped_ptr<net::URLFetcher> fetcher_; |
| 100 LoadState load_state_; | 104 LoadState load_state_; |
| 101 FetchState fetch_state_; | 105 FetchState fetch_state_; |
| 102 | 106 |
| 103 content::NotificationRegistrar registrar_; | 107 content::NotificationRegistrar registrar_; |
| 104 | 108 |
| 105 DISALLOW_COPY_AND_ASSIGN(OmniboxNavigationObserver); | 109 DISALLOW_COPY_AND_ASSIGN(OmniboxNavigationObserver); |
| 106 }; | 110 }; |
| 107 | 111 |
| 108 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_NAVIGATION_OBSERVER_H_ | 112 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_NAVIGATION_OBSERVER_H_ |
| OLD | NEW |