Chromium Code Reviews| Index: chrome/browser/ui/webui/policy_ui.h |
| diff --git a/chrome/browser/ui/webui/policy_ui.h b/chrome/browser/ui/webui/policy_ui.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4faedbc82651bf0216c6d77d9d465ee7d30ee0a1 |
| --- /dev/null |
| +++ b/chrome/browser/ui/webui/policy_ui.h |
| @@ -0,0 +1,45 @@ |
| +// Copyright (c) 2011 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_POLICY_UI_H_ |
| +#define CHROME_BROWSER_UI_WEBUI_POLICY_UI_H_ |
| +#pragma once |
| + |
| +#include "base/scoped_ptr.h" |
| +#include "base/values.h" |
| +#include "chrome/browser/policy/configuration_policy_reader.h" |
| +#include "chrome/browser/ui/webui/chrome_web_ui.h" |
| +#include "content/common/notification_observer.h" |
| + |
| +// The base class handler of Javascript messages of the about:policy page. |
| +class PolicyUIHandler : public WebUIMessageHandler { |
| + public: |
|
Mattias Nissler (ping if slow)
2011/08/12 09:42:05
indentation.
simo
2011/08/16 17:36:34
Done.
|
| + PolicyUIHandler(); |
| + virtual ~PolicyUIHandler(); |
| + |
| + // WebUIMessageHandler implementation. |
| + virtual WebUIMessageHandler* Attach(WebUI* web_ui) OVERRIDE; |
| + virtual void RegisterMessages() OVERRIDE; |
| + |
| + private: |
| + |
|
Mattias Nissler (ping if slow)
2011/08/12 09:42:05
no newline
simo
2011/08/16 17:36:34
Done.
|
| + // Callback for the "requestPolicyData" message. |
| + void HandleRequestPolicyData(const ListValue* args); |
| + |
| + scoped_ptr<policy::PolicyStatus> policy_status_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(PolicyUIHandler); |
| +}; |
| + |
| +// The Web UI handler for about:policy. |
| +class PolicyUI : public ChromeWebUI { |
| + public: |
|
Mattias Nissler (ping if slow)
2011/08/12 09:42:05
indentation
simo
2011/08/16 17:36:34
Done.
|
| + explicit PolicyUI(TabContents* contents); |
| + virtual ~PolicyUI(); |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(PolicyUI); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_WEBUI_POLICY_UI_H_ |