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

Side by Side Diff: chrome/browser/ui/webui/policy_ui.h

Issue 8986007: Move WebUIMessageHandler to its own file in the public directory and put it in the content namesp... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/webui/plugins_ui.cc ('k') | chrome/browser/ui/webui/policy_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_POLICY_UI_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_POLICY_UI_H_
6 #define CHROME_BROWSER_UI_WEBUI_POLICY_UI_H_ 6 #define CHROME_BROWSER_UI_WEBUI_POLICY_UI_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/values.h" 10 #include "base/values.h"
11 #include "chrome/browser/policy/cloud_policy_subsystem.h" 11 #include "chrome/browser/policy/cloud_policy_subsystem.h"
12 #include "chrome/browser/policy/configuration_policy_reader.h" 12 #include "chrome/browser/policy/configuration_policy_reader.h"
13 #include "chrome/browser/ui/webui/chrome_web_ui.h" 13 #include "chrome/browser/ui/webui/chrome_web_ui.h"
14 #include "content/public/browser/web_ui_message_handler.h"
14 15
15 namespace policy { 16 namespace policy {
16 class CloudPolicyDataStore; 17 class CloudPolicyDataStore;
17 } 18 }
18 19
19 // The base class handler of Javascript messages of the about:policy page. 20 // The base class handler of Javascript messages of the about:policy page.
20 class PolicyUIHandler : public WebUIMessageHandler, 21 class PolicyUIHandler : public content::WebUIMessageHandler,
21 public policy::PolicyStatus::Observer { 22 public policy::PolicyStatus::Observer {
22 public: 23 public:
23 PolicyUIHandler(); 24 PolicyUIHandler();
24 virtual ~PolicyUIHandler(); 25 virtual ~PolicyUIHandler();
25 26
26 // WebUIMessageHandler implementation. 27 // WebUIMessageHandler implementation.
27 virtual void RegisterMessages() OVERRIDE; 28 virtual void RegisterMessages() OVERRIDE;
28 29
29 // policy::PolicyStatus::Observer implementation. 30 // policy::PolicyStatus::Observer implementation.
30 virtual void OnPolicyValuesChanged() OVERRIDE; 31 virtual void OnPolicyValuesChanged() OVERRIDE;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 class PolicyUI : public ChromeWebUI { 73 class PolicyUI : public ChromeWebUI {
73 public: 74 public:
74 explicit PolicyUI(content::WebContents* contents); 75 explicit PolicyUI(content::WebContents* contents);
75 virtual ~PolicyUI(); 76 virtual ~PolicyUI();
76 77
77 private: 78 private:
78 DISALLOW_COPY_AND_ASSIGN(PolicyUI); 79 DISALLOW_COPY_AND_ASSIGN(PolicyUI);
79 }; 80 };
80 81
81 #endif // CHROME_BROWSER_UI_WEBUI_POLICY_UI_H_ 82 #endif // CHROME_BROWSER_UI_WEBUI_POLICY_UI_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/plugins_ui.cc ('k') | chrome/browser/ui/webui/policy_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698