| Index: chrome/browser/ui/omnibox/chrome_omnibox_edit_controller.h
|
| diff --git a/chrome/browser/ui/omnibox/chrome_omnibox_edit_controller.h b/chrome/browser/ui/omnibox/chrome_omnibox_edit_controller.h
|
| index 386b5e9f4909b14411001c7125e95c874312d542..7f897eeb242a320aaee0df9f490f9a2d66bdc09f 100644
|
| --- a/chrome/browser/ui/omnibox/chrome_omnibox_edit_controller.h
|
| +++ b/chrome/browser/ui/omnibox/chrome_omnibox_edit_controller.h
|
| @@ -19,6 +19,10 @@ class ChromeOmniboxEditController : public OmniboxEditController {
|
| // Returns the WebContents of the currently active tab.
|
| virtual content::WebContents* GetWebContents() = 0;
|
|
|
| + // Called when the the controller should update itself without restoring any
|
| + // tab state.
|
| + virtual void UpdateWithoutTabRestore() = 0;
|
| +
|
| CommandUpdater* command_updater() { return command_updater_; }
|
| const CommandUpdater* command_updater() const { return command_updater_; }
|
|
|
| @@ -31,6 +35,7 @@ class ChromeOmniboxEditController : public OmniboxEditController {
|
| void OnAutocompleteAccept(const GURL& destination_url,
|
| WindowOpenDisposition disposition,
|
| ui::PageTransition transition) override;
|
| + void SetInputInProgress(bool in_progress) override;
|
|
|
| CommandUpdater* command_updater_;
|
|
|
|
|