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

Side by Side Diff: sky/engine/core/frame/Frame.cpp

Issue 686903003: Remove RenderPart. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « sky/engine/core/frame/Frame.h ('k') | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
35 #include "core/frame/FrameHost.h" 35 #include "core/frame/FrameHost.h"
36 #include "core/frame/Settings.h" 36 #include "core/frame/Settings.h"
37 #include "core/loader/EmptyClients.h" 37 #include "core/loader/EmptyClients.h"
38 #include "core/loader/FrameLoaderClient.h" 38 #include "core/loader/FrameLoaderClient.h"
39 #include "core/page/Chrome.h" 39 #include "core/page/Chrome.h"
40 #include "core/page/ChromeClient.h" 40 #include "core/page/ChromeClient.h"
41 #include "core/page/EventHandler.h" 41 #include "core/page/EventHandler.h"
42 #include "core/page/FocusController.h" 42 #include "core/page/FocusController.h"
43 #include "core/page/Page.h" 43 #include "core/page/Page.h"
44 #include "core/rendering/RenderLayer.h" 44 #include "core/rendering/RenderLayer.h"
45 #include "core/rendering/RenderPart.h"
46 #include "platform/graphics/GraphicsLayer.h" 45 #include "platform/graphics/GraphicsLayer.h"
47 #include "public/platform/WebLayer.h" 46 #include "public/platform/WebLayer.h"
48 #include "wtf/PassOwnPtr.h" 47 #include "wtf/PassOwnPtr.h"
49 #include "wtf/RefCountedLeakCounter.h" 48 #include "wtf/RefCountedLeakCounter.h"
50 49
51 namespace blink { 50 namespace blink {
52 51
53 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame")); 52 DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, frameCounter, ("Frame"));
54 53
55 Frame::Frame(FrameClient* client, FrameHost* host) 54 Frame::Frame(FrameClient* client, FrameHost* host)
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 } 111 }
113 112
114 ChromeClient& Frame::chromeClient() const 113 ChromeClient& Frame::chromeClient() const
115 { 114 {
116 if (Page* page = this->page()) 115 if (Page* page = this->page())
117 return page->chrome().client(); 116 return page->chrome().client();
118 return emptyChromeClient(); 117 return emptyChromeClient();
119 } 118 }
120 119
121 } // namespace blink 120 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/frame/Frame.h ('k') | sky/engine/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698