| Index: chrome/browser/chromeos/login/registration_screen.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/registration_screen.cc (revision 118703)
|
| +++ chrome/browser/chromeos/login/registration_screen.cc (working copy)
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/common/url_constants.h"
|
| #include "content/browser/child_process_security_policy.h"
|
| #include "content/browser/renderer_host/render_view_host.h"
|
| -#include "content/browser/site_instance.h"
|
| +#include "content/public/browser/site_instance.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "net/url_request/url_request_about_job.h"
|
| @@ -70,7 +70,8 @@
|
| GURL url(kRegistrationHostPageUrl);
|
| Profile* profile = ProfileManager::GetDefaultProfile();
|
| view()->InitDOM(profile,
|
| - SiteInstance::CreateSiteInstanceForURL(profile, url));
|
| + content::SiteInstance::CreateSiteInstanceForURL(profile,
|
| + url));
|
| view()->SetWebContentsDelegate(this);
|
| view()->LoadURL(url);
|
| }
|
|
|