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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/cros_options_page_ui_handler.h

Issue 7867044: PART1: Initiated the SignedSettings refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final rebase to ToT before hitting the CQ. Created 9 years, 1 month 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CROS_OPTIONS_PAGE_UI_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CROS_OPTIONS_PAGE_UI_HANDLER_H_
7 #pragma once
8
9 #include "chrome/browser/chromeos/cros_settings_provider.h"
10 #include "chrome/browser/ui/webui/options/options_ui.h"
11
12 namespace chromeos {
13
14 // The base class handler of Javascript messages of options pages.
15 class CrosOptionsPageUIHandler : public OptionsPageUIHandler {
16 public:
17 explicit CrosOptionsPageUIHandler(CrosSettingsProvider* provider);
18 virtual ~CrosOptionsPageUIHandler();
19
20 protected:
21 scoped_ptr<CrosSettingsProvider> settings_provider_;
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(CrosOptionsPageUIHandler);
25 };
26
27 } // namespace chromeos
28
29 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_CROS_OPTIONS_PAGE_UI_HANDLER _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698