| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
| 3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
| 4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
| 5 * 2000 Simon Hausmann <hausmann@kde.org> | 5 * 2000 Simon Hausmann <hausmann@kde.org> |
| 6 * 2000 Stefan Schimanski <1Stein@gmx.de> | 6 * 2000 Stefan Schimanski <1Stein@gmx.de> |
| 7 * 2001 George Staikos <staikos@kde.org> | 7 * 2001 George Staikos <staikos@kde.org> |
| 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> | 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> |
| 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "sky/engine/core/frame/LocalDOMWindow.h" | 35 #include "sky/engine/core/frame/LocalDOMWindow.h" |
| 36 #include "sky/engine/core/frame/Settings.h" | 36 #include "sky/engine/core/frame/Settings.h" |
| 37 #include "sky/engine/core/loader/EmptyClients.h" | 37 #include "sky/engine/core/loader/EmptyClients.h" |
| 38 #include "sky/engine/core/loader/FrameLoaderClient.h" | 38 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 39 #include "sky/engine/core/page/Chrome.h" | 39 #include "sky/engine/core/page/Chrome.h" |
| 40 #include "sky/engine/core/page/ChromeClient.h" | 40 #include "sky/engine/core/page/ChromeClient.h" |
| 41 #include "sky/engine/core/page/EventHandler.h" | 41 #include "sky/engine/core/page/EventHandler.h" |
| 42 #include "sky/engine/core/page/FocusController.h" | 42 #include "sky/engine/core/page/FocusController.h" |
| 43 #include "sky/engine/core/page/Page.h" | 43 #include "sky/engine/core/page/Page.h" |
| 44 #include "sky/engine/core/rendering/RenderLayer.h" | 44 #include "sky/engine/core/rendering/RenderLayer.h" |
| 45 #include "sky/engine/platform/graphics/GraphicsLayer.h" | |
| 46 #include "sky/engine/public/platform/WebLayer.h" | 45 #include "sky/engine/public/platform/WebLayer.h" |
| 47 #include "sky/engine/wtf/PassOwnPtr.h" | 46 #include "sky/engine/wtf/PassOwnPtr.h" |
| 48 #include "sky/engine/wtf/RefCountedLeakCounter.h" | 47 #include "sky/engine/wtf/RefCountedLeakCounter.h" |
| 49 | 48 |
| 50 namespace blink { | 49 namespace blink { |
| 51 | 50 |
| 52 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame")); | 51 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame")); |
| 53 | 52 |
| 54 Frame::Frame(FrameClient* client, FrameHost* host) | 53 Frame::Frame(FrameClient* client, FrameHost* host) |
| 55 : m_host(host) | 54 : m_host(host) |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 } | 110 } |
| 112 | 111 |
| 113 ChromeClient& Frame::chromeClient() const | 112 ChromeClient& Frame::chromeClient() const |
| 114 { | 113 { |
| 115 if (Page* page = this->page()) | 114 if (Page* page = this->page()) |
| 116 return page->chrome().client(); | 115 return page->chrome().client(); |
| 117 return emptyChromeClient(); | 116 return emptyChromeClient(); |
| 118 } | 117 } |
| 119 | 118 |
| 120 } // namespace blink | 119 } // namespace blink |
| OLD | NEW |