| Index: chrome/browser/chromeos/first_run/first_run_view.cc
|
| diff --git a/chrome/browser/chromeos/first_run/first_run_view.cc b/chrome/browser/chromeos/first_run/first_run_view.cc
|
| index 6c630a0759e24ae9237d3d4a93e773cf868f946f..d3aecb625f519c295485b208374a861faf2de17e 100644
|
| --- a/chrome/browser/chromeos/first_run/first_run_view.cc
|
| +++ b/chrome/browser/chromeos/first_run/first_run_view.cc
|
| @@ -31,12 +31,7 @@ void FirstRunView::Init(content::BrowserContext* context) {
|
| extensions::ChromeExtensionWebContentsObserver::CreateForWebContents(
|
| web_contents);
|
|
|
| - SkBitmap background;
|
| - background.setConfig(SkBitmap::kA8_Config, 1, 1);
|
| - background.allocPixels();
|
| - background.eraseARGB(0, 0, 0, 0);
|
| - web_contents->GetRenderViewHost()->GetView()->
|
| - SetBackground(background);
|
| + web_contents->GetRenderViewHost()->GetView()->SetBackgroundOpaque(false);
|
| }
|
|
|
| FirstRunActor* FirstRunView::GetActor() {
|
|
|