summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/signin_internals_ui.h
blob: 21781bb6560bfe7a1b65197f0b006d6629e8504c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_
#define CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_

#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/values.h"
#include "components/signin/core/browser/about_signin_internals.h"
#include "content/public/browser/web_ui_controller.h"

// The implementation for the chrome://signin-internals page.
class SignInInternalsUI : public content::WebUIController,
                          public AboutSigninInternals::Observer {
 public:
  explicit SignInInternalsUI(content::WebUI* web_ui);
  ~SignInInternalsUI() override;

  // content::WebUIController implementation.
  bool OverrideHandleWebUIMessage(const GURL& source_url,
                                  const std::string& name,
                                  const base::ListValue& args) override;

  // AboutSigninInternals::Observer::OnSigninStateChanged implementation.
  void OnSigninStateChanged(const base::DictionaryValue* info) override;

  // Notification that the cookie accounts are ready to be displayed.
  void OnCookieAccountsFetched(const base::DictionaryValue* info) override;

 private:
  DISALLOW_COPY_AND_ASSIGN(SignInInternalsUI);
};

#endif  // CHROME_BROWSER_UI_WEBUI_SIGNIN_INTERNALS_UI_H_