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

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

Issue 762993003: Remove GraphicsLayer family of classes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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
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 "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
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
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/frame/FrameView.cpp » ('j') | sky/engine/platform/scroll/ScrollableArea.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698