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

Unified Diff: chrome/browser/chromeos/login/ui/captive_portal_view.h

Issue 834383004: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/login/ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/ui/captive_portal_window_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/ui/captive_portal_view.h
diff --git a/chrome/browser/chromeos/login/ui/captive_portal_view.h b/chrome/browser/chromeos/login/ui/captive_portal_view.h
index 4f2f954d6b4a6248df832f8e353bece3a71a8abc..aa5c05ea6fb94d54279000188c2374326c218888 100644
--- a/chrome/browser/chromeos/login/ui/captive_portal_view.h
+++ b/chrome/browser/chromeos/login/ui/captive_portal_view.h
@@ -15,25 +15,24 @@ class CaptivePortalWindowProxy;
class CaptivePortalView : public SimpleWebViewDialog {
public:
CaptivePortalView(Profile* profile, CaptivePortalWindowProxy* proxy);
- virtual ~CaptivePortalView();
+ ~CaptivePortalView() override;
// Starts loading.
void StartLoad();
// Overridden from views::WidgetDelegate:
- virtual bool CanResize() const override;
- virtual ui::ModalType GetModalType() const override;
- virtual base::string16 GetWindowTitle() const override;
- virtual bool ShouldShowWindowTitle() const override;
- virtual views::NonClientFrameView* CreateNonClientFrameView(
+ bool CanResize() const override;
+ ui::ModalType GetModalType() const override;
+ base::string16 GetWindowTitle() const override;
+ bool ShouldShowWindowTitle() const override;
+ views::NonClientFrameView* CreateNonClientFrameView(
views::Widget* widget) override;
// Overridden from content::WebContentsDelegate:
- virtual void NavigationStateChanged(
- content::WebContents* source,
- content::InvalidateTypes changed_flags) override;
- virtual void LoadingStateChanged(content::WebContents* source,
- bool to_different_document) override;
+ void NavigationStateChanged(content::WebContents* source,
+ content::InvalidateTypes changed_flags) override;
+ void LoadingStateChanged(content::WebContents* source,
+ bool to_different_document) override;
private:
// Contains CaptivePortalWindowProxy to be notified when redirection state is
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/ui/captive_portal_window_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698