| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_EDIT_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "content/public/common/page_transition_types.h" | 9 #include "content/public/common/page_transition_types.h" |
| 10 #include "ui/base/window_open_disposition.h" | 10 #include "ui/base/window_open_disposition.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 // Hides the origin chip and shows the URL. | 47 // Hides the origin chip and shows the URL. |
| 48 virtual void ShowURL() = 0; | 48 virtual void ShowURL() = 0; |
| 49 | 49 |
| 50 // Hides the origin chip while leaving the Omnibox empty. | 50 // Hides the origin chip while leaving the Omnibox empty. |
| 51 void HideOriginChip(); | 51 void HideOriginChip(); |
| 52 | 52 |
| 53 // Shows the origin chip. Hides the URL if it was previously shown by a call | 53 // Shows the origin chip. Hides the URL if it was previously shown by a call |
| 54 // to ShowURL(). | 54 // to ShowURL(). |
| 55 void ShowOriginChip(); | 55 void ShowOriginChip(); |
| 56 | 56 |
| 57 // Ends any in-progress animations related to showing/hiding the origin chip. |
| 58 virtual void EndOriginChipAnimations() = 0; |
| 59 |
| 57 // Returns the InstantController, or NULL if instant is not enabled. | 60 // Returns the InstantController, or NULL if instant is not enabled. |
| 58 virtual InstantController* GetInstant() = 0; | 61 virtual InstantController* GetInstant() = 0; |
| 59 | 62 |
| 60 // Returns the WebContents of the currently active tab. | 63 // Returns the WebContents of the currently active tab. |
| 61 virtual content::WebContents* GetWebContents() = 0; | 64 virtual content::WebContents* GetWebContents() = 0; |
| 62 | 65 |
| 63 virtual ToolbarModel* GetToolbarModel() = 0; | 66 virtual ToolbarModel* GetToolbarModel() = 0; |
| 64 virtual const ToolbarModel* GetToolbarModel() const = 0; | 67 virtual const ToolbarModel* GetToolbarModel() const = 0; |
| 65 | 68 |
| 66 protected: | 69 protected: |
| (...skipping 13 matching lines...) Expand all Loading... |
| 80 | 83 |
| 81 // The details necessary to open the user's desired omnibox match. | 84 // The details necessary to open the user's desired omnibox match. |
| 82 GURL destination_url_; | 85 GURL destination_url_; |
| 83 WindowOpenDisposition disposition_; | 86 WindowOpenDisposition disposition_; |
| 84 content::PageTransition transition_; | 87 content::PageTransition transition_; |
| 85 | 88 |
| 86 DISALLOW_COPY_AND_ASSIGN(OmniboxEditController); | 89 DISALLOW_COPY_AND_ASSIGN(OmniboxEditController); |
| 87 }; | 90 }; |
| 88 | 91 |
| 89 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_CONTROLLER_H_ | 92 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_EDIT_CONTROLLER_H_ |
| OLD | NEW |