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

Side by Side Diff: chrome/browser/chromeos/login/webui_screen_locker.h

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "ash/wm/lock_state_observer.h" 10 #include "ash/wm/lock_state_observer.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 virtual void AnimateAuthenticationSuccess() OVERRIDE; 64 virtual void AnimateAuthenticationSuccess() OVERRIDE;
65 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; 65 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE;
66 virtual content::WebUI* GetAssociatedWebUI() OVERRIDE; 66 virtual content::WebUI* GetAssociatedWebUI() OVERRIDE;
67 virtual void OnLockWebUIReady() OVERRIDE; 67 virtual void OnLockWebUIReady() OVERRIDE;
68 virtual void OnLockBackgroundDisplayed() OVERRIDE; 68 virtual void OnLockBackgroundDisplayed() OVERRIDE;
69 69
70 // LoginDisplay::Delegate: implementation 70 // LoginDisplay::Delegate: implementation
71 virtual void CancelPasswordChangedFlow() OVERRIDE; 71 virtual void CancelPasswordChangedFlow() OVERRIDE;
72 virtual void CreateAccount() OVERRIDE; 72 virtual void CreateAccount() OVERRIDE;
73 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE; 73 virtual void CompleteLogin(const UserContext& user_context) OVERRIDE;
74 virtual string16 GetConnectedNetworkName() OVERRIDE; 74 virtual base::string16 GetConnectedNetworkName() OVERRIDE;
75 virtual bool IsSigninInProgress() const OVERRIDE; 75 virtual bool IsSigninInProgress() const OVERRIDE;
76 virtual void Login(const UserContext& user_context) OVERRIDE; 76 virtual void Login(const UserContext& user_context) OVERRIDE;
77 virtual void LoginAsRetailModeUser() OVERRIDE; 77 virtual void LoginAsRetailModeUser() OVERRIDE;
78 virtual void LoginAsGuest() OVERRIDE; 78 virtual void LoginAsGuest() OVERRIDE;
79 virtual void MigrateUserData(const std::string& old_password) OVERRIDE; 79 virtual void MigrateUserData(const std::string& old_password) OVERRIDE;
80 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; 80 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE;
81 virtual void OnSigninScreenReady() OVERRIDE; 81 virtual void OnSigninScreenReady() OVERRIDE;
82 virtual void OnUserSelected(const std::string& username) OVERRIDE; 82 virtual void OnUserSelected(const std::string& username) OVERRIDE;
83 virtual void OnStartEnterpriseEnrollment() OVERRIDE; 83 virtual void OnStartEnterpriseEnrollment() OVERRIDE;
84 virtual void OnStartKioskEnableScreen() OVERRIDE; 84 virtual void OnStartKioskEnableScreen() OVERRIDE;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 scoped_ptr<login::NetworkStateHelper> network_state_helper_; 143 scoped_ptr<login::NetworkStateHelper> network_state_helper_;
144 144
145 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; 145 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_;
146 146
147 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); 147 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker);
148 }; 148 };
149 149
150 } // namespace chromeos 150 } // namespace chromeos
151 151
152 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_ 152 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_SCREEN_LOCKER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/webui_login_view.cc ('k') | chrome/browser/chromeos/login/webui_screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698