summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/ui/webui/signin/signin_dice_internals_ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/ui/webui/signin/signin_dice_internals_ui.h')
-rw-r--r--chromium/chrome/browser/ui/webui/signin/signin_dice_internals_ui.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/chromium/chrome/browser/ui/webui/signin/signin_dice_internals_ui.h b/chromium/chrome/browser/ui/webui/signin/signin_dice_internals_ui.h
new file mode 100644
index 00000000000..106f9506b41
--- /dev/null
+++ b/chromium/chrome/browser/ui/webui/signin/signin_dice_internals_ui.h
@@ -0,0 +1,21 @@
+// Copyright 2017 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_SIGNIN_DICE_INTERNALS_UI_H_
+#define CHROME_BROWSER_UI_WEBUI_SIGNIN_SIGNIN_DICE_INTERNALS_UI_H_
+
+#include "base/macros.h"
+#include "content/public/browser/web_ui_controller.h"
+
+// The implementation for the chrome://signin-dice-internals page.
+class SigninDiceInternalsUI : public content::WebUIController {
+ public:
+ explicit SigninDiceInternalsUI(content::WebUI* web_ui);
+ ~SigninDiceInternalsUI() override;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SigninDiceInternalsUI);
+};
+
+#endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_SIGNIN_DICE_INTERNALS_UI_H_