blob: 9e56b3608986270ec1300e78179cb816c86a0693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_
#pragma once
#include <string>
#include "base/compiler_specific.h"
#include "chrome/browser/chromeos/login/screen_observer.h"
#include "chrome/browser/chromeos/login/view_screen.h"
#include "chrome/browser/chromeos/login/web_page_screen.h"
#include "chrome/browser/chromeos/login/web_page_view.h"
#include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h"
class GURL;
class Profile;
namespace net {
class URLRequest;
class URLRequestJob;
} // namespace net
namespace chromeos {
class ViewScreenDelegate;
// Class that displays screen contents: page and throbber while waiting.
class RegistrationView : public WebPageView {
public:
explicit RegistrationView(content::BrowserContext* browser_context);
protected:
virtual WebPageDomView* dom_view() OVERRIDE;
private:
// View that renders page.
WebPageDomView* dom_view_;
DISALLOW_COPY_AND_ASSIGN(RegistrationView);
};
// RegistrationScreen represents screen that is shown during OOBE.
// It renders host page served from resources that includes iframe with
// registration page specified in the startup customization manifest.
// Partner registration page notifies host page on registration result.
// Host page notifies that back to RegistrationScreen.
class RegistrationScreen : public ViewScreen<RegistrationView>,
public WebPageScreen {
public:
explicit RegistrationScreen(ViewScreenDelegate* delegate);
virtual ~RegistrationScreen();
// WizardScreen overrides:
virtual std::string GetName() const OVERRIDE;
// Handler factory for net::URLRequestFilter::AddHostnameHandler.
static net::URLRequestJob* Factory(net::URLRequest* request,
const std::string& scheme);
private:
// ViewScreen implementation:
virtual void CreateView() OVERRIDE;
virtual void Refresh() OVERRIDE;
virtual RegistrationView* AllocateView() OVERRIDE;
// content::WebContentsDelegate implementation:
virtual content::WebContents* OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) OVERRIDE;
virtual void HandleKeyboardEvent(
const content::NativeWebKeyboardEvent& event) OVERRIDE;
// WebPageScreen implementation:
virtual void CloseScreen(ScreenObserver::ExitCodes code) OVERRIDE;
UnhandledKeyboardEventHandler unhandled_keyboard_handler_;
DISALLOW_COPY_AND_ASSIGN(RegistrationScreen);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_LOGIN_REGISTRATION_SCREEN_H_
|