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

Side by Side Diff: chrome/browser/ui/webui/signin_internals_ui.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 (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_WEBUI_SIGNIN_INTERNALS_UI_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_
6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_ 6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/values.h" 10 #include "base/values.h"
11 #include "components/signin/core/browser/about_signin_internals.h" 11 #include "components/signin/core/browser/about_signin_internals.h"
12 #include "content/public/browser/web_ui_controller.h" 12 #include "content/public/browser/web_ui_controller.h"
13 13
14 // The implementation for the chrome://signin-internals page. 14 // The implementation for the chrome://signin-internals page.
15 class SignInInternalsUI : public content::WebUIController, 15 class SignInInternalsUI : public content::WebUIController,
16 public AboutSigninInternals::Observer { 16 public AboutSigninInternals::Observer {
17 public: 17 public:
18 explicit SignInInternalsUI(content::WebUI* web_ui); 18 explicit SignInInternalsUI(content::WebUI* web_ui);
19 virtual ~SignInInternalsUI(); 19 ~SignInInternalsUI() override;
20
21 20
22 // content::WebUIController implementation. 21 // content::WebUIController implementation.
23 virtual bool OverrideHandleWebUIMessage(const GURL& source_url, 22 bool OverrideHandleWebUIMessage(const GURL& source_url,
24 const std::string& name, 23 const std::string& name,
25 const base::ListValue& args) override; 24 const base::ListValue& args) override;
26 25
27 // AboutSigninInternals::Observer::OnSigninStateChanged implementation. 26 // AboutSigninInternals::Observer::OnSigninStateChanged implementation.
28 virtual void OnSigninStateChanged(const base::DictionaryValue* info) override; 27 void OnSigninStateChanged(const base::DictionaryValue* info) override;
29 28
30 // Notification that the cookie accounts are ready to be displayed. 29 // Notification that the cookie accounts are ready to be displayed.
31 virtual void OnCookieAccountsFetched( 30 void OnCookieAccountsFetched(const base::DictionaryValue* info) override;
32 const base::DictionaryValue* info) override;
33 31
34 private: 32 private:
35 DISALLOW_COPY_AND_ASSIGN(SignInInternalsUI); 33 DISALLOW_COPY_AND_ASSIGN(SignInInternalsUI);
36 }; 34 };
37 35
38 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_ 36 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698