Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Unified Diff: third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp

Issue 2762423003: Made Frame constructors (and subclasses) take Page& instead of Page* (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp b/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
index f55e46de1bc8e156184cf291981cdfc8847e7ba9..7ba35e11522543c49712af2fe84759b3810bf5ca 100644
--- a/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
+++ b/third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp
@@ -126,7 +126,7 @@ class FrameFetchContextTest : public ::testing::Test {
FrameFetchContext* createChildFrame() {
childClient = StubLocalFrameClientWithParent::create(document->frame());
childFrame = LocalFrame::create(childClient.get(),
- document->frame()->page(), owner.get());
+ *document->frame()->page(), owner.get());
childFrame->setView(FrameView::create(*childFrame, IntSize(500, 500)));
childFrame->init();
childDocument = childFrame->document();
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTestHelper.cpp ('k') | third_party/WebKit/Source/core/svg/graphics/SVGImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698