2 * Copyright (c) 2013, Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #include "core/testing/DummyPageHolder.h"
34 #include "core/frame/LocalDOMWindow.h"
35 #include "core/frame/FrameView.h"
36 #include "core/frame/LocalFrame.h"
37 #include "core/frame/Settings.h"
38 #include "core/loader/EmptyClients.h"
39 #include "wtf/Assertions.h"
43 PassOwnPtr
<DummyPageHolder
> DummyPageHolder::create(
44 const IntSize
& initialViewSize
,
45 Page::PageClients
* pageClients
,
46 PassOwnPtrWillBeRawPtr
<FrameLoaderClient
> frameLoaderClient
) {
47 return adoptPtr(new DummyPageHolder(initialViewSize
, pageClients
, frameLoaderClient
));
50 DummyPageHolder::DummyPageHolder(
51 const IntSize
& initialViewSize
,
52 Page::PageClients
* pageClientsArgument
,
53 PassOwnPtrWillBeRawPtr
<FrameLoaderClient
> frameLoaderClient
)
55 Page::PageClients pageClients
;
56 if (!pageClientsArgument
) {
57 fillWithEmptyClients(pageClients
);
59 pageClients
.chromeClient
= pageClientsArgument
->chromeClient
;
60 pageClients
.contextMenuClient
= pageClientsArgument
->contextMenuClient
;
61 pageClients
.editorClient
= pageClientsArgument
->editorClient
;
62 pageClients
.dragClient
= pageClientsArgument
->dragClient
;
63 pageClients
.spellCheckerClient
= pageClientsArgument
->spellCheckerClient
;
65 m_page
= adoptPtrWillBeNoop(new Page(pageClients
));
66 Settings
& settings
= m_page
->settings();
67 // FIXME: http://crbug.com/363843. This needs to find a better way to
68 // not create graphics layers.
69 settings
.setAcceleratedCompositingEnabled(false);
71 m_frameLoaderClient
= frameLoaderClient
;
72 if (!m_frameLoaderClient
)
73 m_frameLoaderClient
= EmptyFrameLoaderClient::create();
75 m_frame
= LocalFrame::create(m_frameLoaderClient
.get(), &m_page
->frameHost(), 0);
76 m_frame
->setView(FrameView::create(m_frame
.get(), initialViewSize
));
80 DummyPageHolder::~DummyPageHolder()
82 m_page
->willBeDestroyed();
87 Page
& DummyPageHolder::page() const
92 LocalFrame
& DummyPageHolder::frame() const
98 FrameView
& DummyPageHolder::frameView() const
100 return *m_frame
->view();
103 Document
& DummyPageHolder::document() const
105 return *m_frame
->domWindow()->document();