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

Side by Side Diff: page/Frame.h

Issue 113554: For local review prior to sending to webkit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 years, 6 months 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 | « page/DOMWindow.idl ('k') | page/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 Apple Inc. All rights reserved. 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 { 91 {
92 return adoptRef(new Frame(page, ownerElement, client)); 92 return adoptRef(new Frame(page, ownerElement, client));
93 } 93 }
94 void setView(FrameView*); 94 void setView(FrameView*);
95 ~Frame(); 95 ~Frame();
96 96
97 void init(); 97 void init();
98 98
99 Page* page() const; 99 Page* page() const;
100 HTMLFrameOwnerElement* ownerElement() const; 100 HTMLFrameOwnerElement* ownerElement() const;
101 Frame* parentFrame() const;
101 102
102 void pageDestroyed(); 103 void pageDestroyed();
103 void disconnectOwnerElement(); 104 void disconnectOwnerElement();
104 105
105 Document* document() const; 106 Document* document() const;
106 FrameView* view() const; 107 FrameView* view() const;
107 108
108 void setDOMWindow(DOMWindow*); 109 void setDOMWindow(DOMWindow*);
109 DOMWindow* domWindow() const; 110 DOMWindow* domWindow() const;
110 void clearFormerDOMWindow(DOMWindow*); 111 void clearFormerDOMWindow(DOMWindow*);
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 369
369 #if FRAME_LOADS_USER_STYLESHEET 370 #if FRAME_LOADS_USER_STYLESHEET
370 UserStyleSheetLoader* m_userStyleSheetLoader; 371 UserStyleSheetLoader* m_userStyleSheetLoader;
371 #endif 372 #endif
372 373
373 }; 374 };
374 375
375 } // namespace WebCore 376 } // namespace WebCore
376 377
377 #endif // Frame_h 378 #endif // Frame_h
OLDNEW
« no previous file with comments | « page/DOMWindow.idl ('k') | page/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698