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

Side by Side Diff: chrome/browser/ui/toolbar/toolbar_model_impl.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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 unified diff | Download patch
OLDNEW
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 13 matching lines...) Expand all
24 namespace net { 24 namespace net {
25 class X509Certificate; 25 class X509Certificate;
26 } 26 }
27 27
28 // This class is the model used by the toolbar, location bar and autocomplete 28 // This class is the model used by the toolbar, location bar and autocomplete
29 // edit. It populates its states from the current navigation entry retrieved 29 // edit. It populates its states from the current navigation entry retrieved
30 // from the navigation controller returned by GetNavigationController(). 30 // from the navigation controller returned by GetNavigationController().
31 class ToolbarModelImpl : public ToolbarModel { 31 class ToolbarModelImpl : public ToolbarModel {
32 public: 32 public:
33 explicit ToolbarModelImpl(ToolbarModelDelegate* delegate); 33 explicit ToolbarModelImpl(ToolbarModelDelegate* delegate);
34 virtual ~ToolbarModelImpl(); 34 ~ToolbarModelImpl() override;
35 35
36 static SecurityLevel GetSecurityLevelForWebContents( 36 static SecurityLevel GetSecurityLevelForWebContents(
37 content::WebContents* web_contents); 37 content::WebContents* web_contents);
38 38
39 private: 39 private:
40 // ToolbarModel: 40 // ToolbarModel:
41 virtual base::string16 GetText() const override; 41 base::string16 GetText() const override;
42 virtual base::string16 GetFormattedURL(size_t* prefix_end) const override; 42 base::string16 GetFormattedURL(size_t* prefix_end) const override;
43 virtual base::string16 GetCorpusNameForMobile() const override; 43 base::string16 GetCorpusNameForMobile() const override;
44 virtual GURL GetURL() const override; 44 GURL GetURL() const override;
45 virtual bool WouldPerformSearchTermReplacement( 45 bool WouldPerformSearchTermReplacement(bool ignore_editing) const override;
46 bool ignore_editing) const override; 46 SecurityLevel GetSecurityLevel(bool ignore_editing) const override;
47 virtual SecurityLevel GetSecurityLevel(bool ignore_editing) const override; 47 int GetIcon() const override;
48 virtual int GetIcon() const override; 48 int GetIconForSecurityLevel(SecurityLevel level) const override;
49 virtual int GetIconForSecurityLevel(SecurityLevel level) const override; 49 base::string16 GetEVCertName() const override;
50 virtual base::string16 GetEVCertName() const override; 50 bool ShouldDisplayURL() const override;
51 virtual bool ShouldDisplayURL() const override; 51 bool WouldOmitURLDueToOriginChip() const override;
52 virtual bool WouldOmitURLDueToOriginChip() const override;
53 52
54 // Returns the navigation controller used to retrieve the navigation entry 53 // Returns the navigation controller used to retrieve the navigation entry
55 // from which the states are retrieved. 54 // from which the states are retrieved.
56 // If this returns NULL, default values are used. 55 // If this returns NULL, default values are used.
57 content::NavigationController* GetNavigationController() const; 56 content::NavigationController* GetNavigationController() const;
58 57
59 // Helper method to extract the profile from the navigation controller. 58 // Helper method to extract the profile from the navigation controller.
60 Profile* GetProfile() const; 59 Profile* GetProfile() const;
61 60
62 // Returns search terms as in chrome::GetSearchTerms() if such terms should 61 // Returns search terms as in chrome::GetSearchTerms() if such terms should
63 // appear in the omnibox (i.e. the page is sufficiently secure, search term 62 // appear in the omnibox (i.e. the page is sufficiently secure, search term
64 // replacement is enabled, editing is not in progress, etc.). If 63 // replacement is enabled, editing is not in progress, etc.). If
65 // |ignore_editing| is true, the "editing not in progress" check is skipped. 64 // |ignore_editing| is true, the "editing not in progress" check is skipped.
66 base::string16 GetSearchTerms(bool ignore_editing) const; 65 base::string16 GetSearchTerms(bool ignore_editing) const;
67 66
68 ToolbarModelDelegate* delegate_; 67 ToolbarModelDelegate* delegate_;
69 68
70 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarModelImpl); 69 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolbarModelImpl);
71 }; 70 };
72 71
73 #endif // CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_MODEL_IMPL_H_ 72 #endif // CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_MODEL_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698