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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/update_screen_handler.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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
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_CHROMEOS_LOGIN_UPDATE_SCREEN_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_UPDATE_SCREEN_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_UPDATE_SCREEN_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_UPDATE_SCREEN_HANDLER_H_
7 7
8 #include "chrome/browser/chromeos/login/update_screen_actor.h" 8 #include "chrome/browser/chromeos/login/update_screen_actor.h"
9 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" 9 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h"
10 10
11 namespace chromeos { 11 namespace chromeos {
12 12
13 class UpdateScreenHandler : public UpdateScreenActor, 13 class UpdateScreenHandler : public UpdateScreenActor,
14 public OobeMessageHandler { 14 public OobeMessageHandler {
15 public: 15 public:
16 UpdateScreenHandler(); 16 UpdateScreenHandler();
17 virtual ~UpdateScreenHandler(); 17 virtual ~UpdateScreenHandler();
18 18
19 // OobeMessageHandler implementation: 19 // OobeMessageHandler implementation:
20 virtual void GetLocalizedStrings(DictionaryValue* localized_strings); 20 virtual void GetLocalizedStrings(base::DictionaryValue* localized_strings);
21 virtual void Initialize(); 21 virtual void Initialize();
22 22
23 // UpdateScreenActor implementation: 23 // UpdateScreenActor implementation:
24 virtual void Show(); 24 virtual void Show();
25 virtual void Hide(); 25 virtual void Hide();
26 virtual void PrepareToShow(); 26 virtual void PrepareToShow();
27 virtual void ShowManualRebootInfo(); 27 virtual void ShowManualRebootInfo();
28 virtual void SetProgress(int progress); 28 virtual void SetProgress(int progress);
29 virtual void ShowCurtain(bool enable); 29 virtual void ShowCurtain(bool enable);
30 virtual void ShowPreparingUpdatesInfo(bool visible); 30 virtual void ShowPreparingUpdatesInfo(bool visible);
31 31
32 // WebUIMessageHandler implementation: 32 // WebUIMessageHandler implementation:
33 virtual void RegisterMessages(); 33 virtual void RegisterMessages();
34 34
35 private: 35 private:
36 DISALLOW_COPY_AND_ASSIGN(UpdateScreenHandler); 36 DISALLOW_COPY_AND_ASSIGN(UpdateScreenHandler);
37 }; 37 };
38 38
39 } // namespace chromeos 39 } // namespace chromeos
40 40
41 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_UPDATE_SCREEN_HANDLER_H_ 41 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_UPDATE_SCREEN_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698