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

Side by Side Diff: chrome/browser/dom_ui/options_managed_banner_handler.h

Issue 3203008: Move prefs-related files under chrome/browser/ into a prefs/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_DOM_UI_OPTIONS_MANAGED_BANNER_HANDLER_H_ 5 #ifndef CHROME_BROWSER_DOM_UI_OPTIONS_MANAGED_BANNER_HANDLER_H_
6 #define CHROME_BROWSER_DOM_UI_OPTIONS_MANAGED_BANNER_HANDLER_H_ 6 #define CHROME_BROWSER_DOM_UI_OPTIONS_MANAGED_BANNER_HANDLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/managed_prefs_banner_base.h" 9 #include "chrome/browser/policy/managed_prefs_banner_base.h"
10 #include "chrome/browser/options_window.h" 10 #include "chrome/browser/options_window.h"
11 11
12 class DOMUI; 12 class DOMUI;
13 13
14 // Managed options banner handler. 14 // Managed options banner handler.
15 // Controls the display of a banner if an options panel contains options 15 // Controls the display of a banner if an options panel contains options
16 // that are under administator control. 16 // that are under administator control.
17 class OptionsManagedBannerHandler : public ManagedPrefsBannerBase { 17 class OptionsManagedBannerHandler : public ManagedPrefsBannerBase {
18 public: 18 public:
19 OptionsManagedBannerHandler(DOMUI* dom_ui, const string16& page_name, 19 OptionsManagedBannerHandler(DOMUI* dom_ui, const string16& page_name,
(...skipping 10 matching lines...) Expand all
30 30
31 DOMUI* dom_ui_; // weak reference to the dom-ui. 31 DOMUI* dom_ui_; // weak reference to the dom-ui.
32 string16 page_name_; // current options page name. 32 string16 page_name_; // current options page name.
33 OptionsPage page_; // current options page value. 33 OptionsPage page_; // current options page value.
34 34
35 DISALLOW_COPY_AND_ASSIGN(OptionsManagedBannerHandler); 35 DISALLOW_COPY_AND_ASSIGN(OptionsManagedBannerHandler);
36 }; 36 };
37 37
38 #endif // CHROME_BROWSER_DOM_UI_OPTIONS_MANAGED_BANNER_HANDLER_H_ 38 #endif // CHROME_BROWSER_DOM_UI_OPTIONS_MANAGED_BANNER_HANDLER_H_
39 39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698