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_TOOLBAR_TOOLBAR_MODEL_IMPL_H_ | 5 #ifndef CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_MODEL_IMPL_H_ |
6 #define CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_MODEL_IMPL_H_ | 6 #define CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_MODEL_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 base::string16 GetText() const override; | 41 base::string16 GetText() const override; |
42 base::string16 GetFormattedURL(size_t* prefix_end) const override; | 42 base::string16 GetFormattedURL(size_t* prefix_end) const override; |
43 base::string16 GetCorpusNameForMobile() const override; | 43 base::string16 GetCorpusNameForMobile() const override; |
44 GURL GetURL() const override; | 44 GURL GetURL() const override; |
45 bool WouldPerformSearchTermReplacement(bool ignore_editing) const override; | 45 bool WouldPerformSearchTermReplacement(bool ignore_editing) const override; |
46 SecurityLevel GetSecurityLevel(bool ignore_editing) const override; | 46 SecurityLevel GetSecurityLevel(bool ignore_editing) const override; |
47 int GetIcon() const override; | 47 int GetIcon() const override; |
48 int GetIconForSecurityLevel(SecurityLevel level) const override; | 48 int GetIconForSecurityLevel(SecurityLevel level) const override; |
49 base::string16 GetEVCertName() const override; | 49 base::string16 GetEVCertName() const override; |
50 bool ShouldDisplayURL() const override; | 50 bool ShouldDisplayURL() const override; |
51 bool WouldOmitURLDueToOriginChip() const override; | |
52 | 51 |
53 // Returns the navigation controller used to retrieve the navigation entry | 52 // Returns the navigation controller used to retrieve the navigation entry |
54 // from which the states are retrieved. | 53 // from which the states are retrieved. |
55 // If this returns NULL, default values are used. | 54 // If this returns NULL, default values are used. |
56 content::NavigationController* GetNavigationController() const; | 55 content::NavigationController* GetNavigationController() const; |
57 | 56 |
58 // Helper method to extract the profile from the navigation controller. | 57 // Helper method to extract the profile from the navigation controller. |
59 Profile* GetProfile() const; | 58 Profile* GetProfile() const; |
60 | 59 |
61 // Returns search terms as in chrome::GetSearchTerms() if such terms should | 60 // Returns search terms as in chrome::GetSearchTerms() if such terms should |
62 // appear in the omnibox (i.e. the page is sufficiently secure, search term | 61 // appear in the omnibox (i.e. the page is sufficiently secure, search term |
63 // replacement is enabled, editing is not in progress, etc.). If | 62 // replacement is enabled, editing is not in progress, etc.). If |
64 // |ignore_editing| is true, the "editing not in progress" check is skipped. | 63 // |ignore_editing| is true, the "editing not in progress" check is skipped. |
65 base::string16 GetSearchTerms(bool ignore_editing) const; | 64 base::string16 GetSearchTerms(bool ignore_editing) const; |
66 | 65 |
67 ToolbarModelDelegate* delegate_; | 66 ToolbarModelDelegate* delegate_; |
68 | 67 |
69 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarModelImpl); | 68 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarModelImpl); |
70 }; | 69 }; |
71 | 70 |
72 #endif // CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_MODEL_IMPL_H_ | 71 #endif // CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_MODEL_IMPL_H_ |
OLD | NEW |