OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ErrorScreen
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/chrome/browser/chromeos/login/screens/
error_screen.cc
12
ErrorScreen
::
ErrorScreen
(ScreenObserver* screen_observer,
20
ErrorScreen
::~
ErrorScreen
() {
23
void
ErrorScreen
::PrepareToShow() {
26
void
ErrorScreen
::Show() {
31
void
ErrorScreen
::Hide() {
36
std::string
ErrorScreen
::GetName() const {
40
void
ErrorScreen
::FixCaptivePortal() {
45
void
ErrorScreen
::ShowCaptivePortal()
[
all
...]
error_screen_actor.cc
10
: ui_state_(
ErrorScreen
::UI_STATE_UNKNOWN),
11
error_state_(
ErrorScreen
::ERROR_STATE_UNKNOWN),
error_screen_actor.h
38
ErrorScreen
::UIState ui_state() const { return ui_state_; }
39
ErrorScreen
::ErrorState error_state() const { return error_state_; }
62
virtual void SetUIState(
ErrorScreen
::UIState ui_state) = 0;
63
virtual void SetErrorState(
ErrorScreen
::ErrorState error_state,
70
ErrorScreen
::UIState ui_state_;
71
ErrorScreen
::ErrorState error_state_;
mock_error_screen.h
14
class MockErrorScreen : public
ErrorScreen
{
31
MOCK_METHOD1(SetUIState, void(
ErrorScreen
::UIState ui_state));
32
MOCK_METHOD2(SetErrorState, void(
ErrorScreen
::ErrorState error_state,
error_screen.h
20
class
ErrorScreen
: public WizardScreen {
37
ErrorScreen
(ScreenObserver* screen_observer, ErrorScreenActor* actor);
38
virtual ~
ErrorScreen
();
72
DISALLOW_COPY_AND_ASSIGN(
ErrorScreen
);
mock_error_screen.cc
11
:
ErrorScreen
(screen_observer, actor) {
screen_observer.h
12
class
ErrorScreen
;
63
virtual
ErrorScreen
* GetErrorScreen() = 0;
mock_screen_observer.h
28
MOCK_METHOD0(GetErrorScreen,
ErrorScreen
*());
update_screen_browsertest.cc
239
SetUIState(
ErrorScreen
::UI_STATE_UPDATE))
242
SetErrorState(
ErrorScreen
::ERROR_STATE_PORTAL, std::string()))
285
SetUIState(
ErrorScreen
::UI_STATE_UPDATE))
288
SetErrorState(
ErrorScreen
::ERROR_STATE_PORTAL, std::string()))
308
SetErrorState(
ErrorScreen
::ERROR_STATE_PROXY, std::string()))
338
SetUIState(
ErrorScreen
::UI_STATE_UPDATE))
341
SetErrorState(
ErrorScreen
::ERROR_STATE_OFFLINE, std::string()))
364
SetUIState(
ErrorScreen
::UI_STATE_UPDATE))
367
SetErrorState(
ErrorScreen
::ERROR_STATE_PORTAL, std::string()))
update_screen.h
23
class
ErrorScreen
;
107
ErrorScreen
* GetErrorScreen();
screen_factory.cc
83
return new
ErrorScreen
(observer_, oobe_display_->GetErrorScreenActor());
update_screen.cc
486
ErrorScreen
* UpdateScreen::GetErrorScreen() {
506
GetErrorScreen()->SetUIState(
ErrorScreen
::UI_STATE_UPDATE);
524
GetErrorScreen()->SetErrorState(
ErrorScreen
::ERROR_STATE_OFFLINE,
529
GetErrorScreen()->SetErrorState(
ErrorScreen
::ERROR_STATE_PORTAL,
537
GetErrorScreen()->SetErrorState(
ErrorScreen
::ERROR_STATE_PROXY,
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
error_screen_handler.h
40
virtual void SetUIState(
ErrorScreen
::UIState ui_state) OVERRIDE;
41
virtual void SetErrorState(
ErrorScreen
::ErrorState error_state,
error_screen_handler.cc
96
void ErrorScreenHandler::SetUIState(
ErrorScreen
::UIState ui_state) {
101
void ErrorScreenHandler::SetErrorState(
ErrorScreen
::ErrorState error_state,
signin_screen_handler.cc
225
bool IsSigninScreenError(
ErrorScreen
::ErrorState error_state) {
226
return error_state ==
ErrorScreen
::ERROR_STATE_PORTAL ||
227
error_state ==
ErrorScreen
::ERROR_STATE_OFFLINE ||
228
error_state ==
ErrorScreen
::ERROR_STATE_PROXY ||
229
error_state ==
ErrorScreen
::ERROR_STATE_AUTH_EXT_TIMEOUT;
707
error_screen_actor_->SetErrorState(
ErrorScreen
::ERROR_STATE_PROXY,
716
ErrorScreen
::ERROR_STATE_PORTAL)) {
720
error_screen_actor_->SetErrorState(
ErrorScreen
::ERROR_STATE_PORTAL,
724
ErrorScreen
::ERROR_STATE_AUTH_EXT_TIMEOUT, std::string());
726
error_screen_actor_->SetErrorState(
ErrorScreen
::ERROR_STATE_OFFLINE
[
all
...]
/external/chromium_org/chrome/browser/chromeos/login/managed/
locally_managed_user_creation_screen.cc
29
void ConfigureErrorScreen(
ErrorScreen
* screen,
38
screen->SetErrorState(
ErrorScreen
::ERROR_STATE_OFFLINE,
42
screen->SetErrorState(
ErrorScreen
::ERROR_STATE_PORTAL,
47
screen->SetErrorState(
ErrorScreen
::ERROR_STATE_PROXY,
110
ErrorScreen
* screen = get_screen_observer()->GetErrorScreen();
112
screen->SetUIState(
ErrorScreen
::UI_STATE_LOCALLY_MANAGED);
/external/chromium_org/chrome/browser/chromeos/login/
wizard_controller.h
30
class
ErrorScreen
;
213
virtual
ErrorScreen
* GetErrorScreen() OVERRIDE;
254
scoped_ptr<
ErrorScreen
> error_screen_;
wizard_controller.cc
805
chromeos::
ErrorScreen
* WizardController::GetErrorScreen() {
808
new chromeos::
ErrorScreen
(this, oobe_display_->GetErrorScreenActor()));
Completed in 2076 milliseconds