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

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

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/core.gni ('k') | sky/engine/core/frame/Frame.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-2001 Lars Knoll <knoll@kde.org> 3 * 1999-2001 Lars Knoll <knoll@kde.org>
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> 4 * 1999-2001 Antti Koivisto <koivisto@kde.org>
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> 5 * 2000-2001 Simon Hausmann <hausmann@kde.org>
6 * 2000-2001 Dirk Mueller <mueller@kde.org> 6 * 2000-2001 Dirk Mueller <mueller@kde.org>
7 * 2000 Stefan Schimanski <1Stein@gmx.de> 7 * 2000 Stefan Schimanski <1Stein@gmx.de>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
(...skipping 25 matching lines...) Expand all
36 class WebLayer; 36 class WebLayer;
37 } 37 }
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class ChromeClient; 41 class ChromeClient;
42 class FrameClient; 42 class FrameClient;
43 class FrameHost; 43 class FrameHost;
44 class LocalDOMWindow; 44 class LocalDOMWindow;
45 class Page; 45 class Page;
46 class RenderPart;
47 class Settings; 46 class Settings;
48 47
49 class Frame : public RefCounted<Frame> { 48 class Frame : public RefCounted<Frame> {
50 public: 49 public:
51 virtual ~Frame(); 50 virtual ~Frame();
52 51
53 virtual void detach() = 0; 52 virtual void detach() = 0;
54 void detachChildren(); 53 void detachChildren();
55 54
56 FrameClient* client() const; 55 FrameClient* client() const;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 { 95 {
97 return m_domWindow.get(); 96 return m_domWindow.get();
98 } 97 }
99 98
100 // Allow equality comparisons of Frames by reference or pointer, interchangeably . 99 // Allow equality comparisons of Frames by reference or pointer, interchangeably .
101 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) 100 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame)
102 101
103 } // namespace blink 102 } // namespace blink
104 103
105 #endif // Frame_h 104 #endif // Frame_h
OLDNEW
« no previous file with comments | « sky/engine/core/core.gni ('k') | sky/engine/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698