| Index: chrome/browser/chromeos/login/registration_screen.h
|
| diff --git a/chrome/browser/chromeos/login/registration_screen.h b/chrome/browser/chromeos/login/registration_screen.h
|
| index 54ba67484cdcddfd3d6f2c00f2d34b66ad173add..0ac81c3adcdfb0829aa4aceb046bece1384434b1 100644
|
| --- a/chrome/browser/chromeos/login/registration_screen.h
|
| +++ b/chrome/browser/chromeos/login/registration_screen.h
|
| @@ -67,11 +67,8 @@ class RegistrationScreen : public ViewScreen<RegistrationView>,
|
| explicit RegistrationScreen(ViewScreenDelegate* delegate);
|
|
|
| // WebPageDelegate implementation:
|
| - virtual void OnPageLoaded();
|
| - virtual void OnPageLoadFailed(const std::string& url);
|
| -
|
| - // Sets the url for registration host page. Used in tests.
|
| - static void set_registration_host_page_url(const GURL& url);
|
| + virtual void OnPageLoaded() OVERRIDE;
|
| + virtual void OnPageLoadFailed(const std::string& url) OVERRIDE;
|
|
|
| // Handler factory for net::URLRequestFilter::AddHostnameHandler.
|
| static net::URLRequestJob* Factory(net::URLRequest* request,
|
| @@ -100,9 +97,6 @@ class RegistrationScreen : public ViewScreen<RegistrationView>,
|
| // WebPageScreen implementation:
|
| virtual void CloseScreen(ScreenObserver::ExitCodes code);
|
|
|
| - // Url of account creation page. Overriden by tests.
|
| - static scoped_ptr<GURL> host_page_url_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(RegistrationScreen);
|
| };
|
|
|
|
|