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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 2060083002: LocalFrame::localLayerTreeAsText() ==> layerTreeAsText() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 186
187 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*, ServiceRegistry*); 187 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*, ServiceRegistry*);
188 188
189 // Internal Frame helper overrides: 189 // Internal Frame helper overrides:
190 WindowProxyManager* getWindowProxyManager() const override; 190 WindowProxyManager* getWindowProxyManager() const override;
191 // Intentionally private to prevent redundant checks when the type is 191 // Intentionally private to prevent redundant checks when the type is
192 // already LocalFrame. 192 // already LocalFrame.
193 bool isLocalFrame() const override { return true; } 193 bool isLocalFrame() const override { return true; }
194 bool isRemoteFrame() const override { return false; } 194 bool isRemoteFrame() const override { return false; }
195 195
196 String localLayerTreeAsText(unsigned flags) const;
197
198 void enableNavigation() { --m_navigationDisableCount; } 196 void enableNavigation() { --m_navigationDisableCount; }
199 void disableNavigation() { ++m_navigationDisableCount; } 197 void disableNavigation() { ++m_navigationDisableCount; }
200 198
201 mutable FrameLoader m_loader; 199 mutable FrameLoader m_loader;
202 Member<NavigationScheduler> m_navigationScheduler; 200 Member<NavigationScheduler> m_navigationScheduler;
203 201
204 Member<FrameView> m_view; 202 Member<FrameView> m_view;
205 Member<LocalDOMWindow> m_domWindow; 203 Member<LocalDOMWindow> m_domWindow;
206 // Usually 0. Non-null if this is the top frame of PagePopup. 204 // Usually 0. Non-null if this is the top frame of PagePopup.
207 Member<Element> m_pagePopupOwner; 205 Member<Element> m_pagePopupOwner;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 explicit ScopedFrameBlamer(LocalFrame*); 332 explicit ScopedFrameBlamer(LocalFrame*);
335 ~ScopedFrameBlamer(); 333 ~ScopedFrameBlamer();
336 334
337 private: 335 private:
338 Member<LocalFrame> m_frame; 336 Member<LocalFrame> m_frame;
339 }; 337 };
340 338
341 } // namespace blink 339 } // namespace blink
342 340
343 #endif // LocalFrame_h 341 #endif // LocalFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698