| Index: content/test/test_web_contents.cc
|
| diff --git a/content/test/test_web_contents.cc b/content/test/test_web_contents.cc
|
| index be20dccb507c8de345d559b52d999f0d57b04b2b..7a732d077bc51b4606929e4e9ac366627ef360be 100644
|
| --- a/content/test/test_web_contents.cc
|
| +++ b/content/test/test_web_contents.cc
|
| @@ -36,8 +36,16 @@ TestWebContents::TestWebContents(BrowserContext* browser_context)
|
|
|
| TestWebContents* TestWebContents::Create(BrowserContext* browser_context,
|
| SiteInstance* instance) {
|
| + LOG(ERROR) << "TWC[]::Create:";
|
| +
|
| TestWebContents* test_web_contents = new TestWebContents(browser_context);
|
| test_web_contents->Init(WebContents::CreateParams(browser_context, instance));
|
| +
|
| + test_web_contents->RenderFrameCreated(test_web_contents->GetMainFrame());
|
| + //test_web_contents->NotifyFrameSwapped(
|
| + // nullptr, test_web_contents->GetMainFrame());
|
| +
|
| + LOG(ERROR) << "TWC[]::Create: complete";
|
| return test_web_contents;
|
| }
|
|
|
|
|