mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
I had to add back document.createText() since new Text() does not work in the new world yet. LayoutRoot is a new Dart-exposed class which holds the Frame and all associated machinery, sufficient to trigger a restyle and layout of the subtree. This is all kinda hacky and I'm sure likely to cause many crashes if folks call random methods on these disconnected trees. But this makes it at least possible to paint text for now and we can improve this in the coming days. This really should have Adam's review. It's hugely hacky but I'd like to negotiate out with him the timeline on which we should fix some of these hacks. R=ianh@google.com TBR=abarth@chromium.org Review URL: https://codereview.chromium.org/1148253003
106 lines
3.0 KiB
C++
106 lines
3.0 KiB
C++
/*
|
|
* Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
|
|
* 1999 Lars Knoll <knoll@kde.org>
|
|
* 1999 Antti Koivisto <koivisto@kde.org>
|
|
* 2000 Simon Hausmann <hausmann@kde.org>
|
|
* 2000 Stefan Schimanski <1Stein@gmx.de>
|
|
* 2001 George Staikos <staikos@kde.org>
|
|
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
|
|
* Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com>
|
|
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
|
|
* Copyright (C) 2008 Eric Seidel <eric@webkit.org>
|
|
* Copyright (C) 2008 Google Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "sky/engine/config.h"
|
|
#include "sky/engine/core/frame/Frame.h"
|
|
|
|
#include "sky/engine/core/events/Event.h"
|
|
#include "sky/engine/core/frame/FrameHost.h"
|
|
#include "sky/engine/core/frame/LocalDOMWindow.h"
|
|
#include "sky/engine/core/frame/Settings.h"
|
|
#include "sky/engine/core/loader/EmptyClients.h"
|
|
#include "sky/engine/core/loader/FrameLoaderClient.h"
|
|
#include "sky/engine/core/page/ChromeClient.h"
|
|
#include "sky/engine/core/page/EventHandler.h"
|
|
#include "sky/engine/core/page/FocusController.h"
|
|
#include "sky/engine/core/page/Page.h"
|
|
#include "sky/engine/core/rendering/RenderLayer.h"
|
|
#include "sky/engine/public/platform/WebLayer.h"
|
|
#include "sky/engine/wtf/PassOwnPtr.h"
|
|
#include "sky/engine/wtf/RefCountedLeakCounter.h"
|
|
|
|
namespace blink {
|
|
|
|
DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame"));
|
|
|
|
Frame::Frame(FrameClient* client, FrameHost* host)
|
|
: m_host(host)
|
|
, m_client(client)
|
|
{
|
|
// ASSERT(page());
|
|
|
|
#ifndef NDEBUG
|
|
frameCounter.increment();
|
|
#endif
|
|
}
|
|
|
|
Frame::~Frame()
|
|
{
|
|
setDOMWindow(nullptr);
|
|
|
|
// FIXME: We should not be doing all this work inside the destructor
|
|
|
|
#ifndef NDEBUG
|
|
frameCounter.decrement();
|
|
#endif
|
|
}
|
|
|
|
void Frame::detachChildren()
|
|
{
|
|
// FIXME(sky): remove
|
|
}
|
|
|
|
FrameHost* Frame::host() const
|
|
{
|
|
return m_host;
|
|
}
|
|
|
|
Page* Frame::page() const
|
|
{
|
|
if (m_host)
|
|
return &m_host->page();
|
|
return 0;
|
|
}
|
|
|
|
Settings* Frame::settings() const
|
|
{
|
|
if (m_host)
|
|
return &m_host->settings();
|
|
return 0;
|
|
}
|
|
|
|
void Frame::setDOMWindow(PassRefPtr<LocalDOMWindow> domWindow)
|
|
{
|
|
if (m_domWindow)
|
|
m_domWindow->reset();
|
|
m_domWindow = domWindow;
|
|
}
|
|
|
|
} // namespace blink
|