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

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

Issue 1508223005: Client side display item cache flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ScrollbarTheme
Patch Set: Fix unit tests Created 4 years, 7 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 184
185 bool isNavigationAllowed() const { return m_navigationDisableCount == 0; } 185 bool isNavigationAllowed() const { return m_navigationDisableCount == 0; }
186 186
187 ServiceRegistry* serviceRegistry() { return m_serviceRegistry; } 187 ServiceRegistry* serviceRegistry() { return m_serviceRegistry; }
188 188
189 private: 189 private:
190 friend class FrameNavigationDisabler; 190 friend class FrameNavigationDisabler;
191 191
192 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*, ServiceRegistry*); 192 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*, ServiceRegistry*);
193 193
194 DISPLAY_ITEM_CACHE_STATUS_UNCACHEABLE_IMPLEMENTATION
195
194 // Internal Frame helper overrides: 196 // Internal Frame helper overrides:
195 WindowProxyManager* getWindowProxyManager() const override; 197 WindowProxyManager* getWindowProxyManager() const override;
196 198
197 String localLayerTreeAsText(unsigned flags) const; 199 String localLayerTreeAsText(unsigned flags) const;
198 200
199 void enableNavigation() { --m_navigationDisableCount; } 201 void enableNavigation() { --m_navigationDisableCount; }
200 void disableNavigation() { ++m_navigationDisableCount; } 202 void disableNavigation() { ++m_navigationDisableCount; }
201 203
202 mutable FrameLoader m_loader; 204 mutable FrameLoader m_loader;
203 Member<NavigationScheduler> m_navigationScheduler; 205 Member<NavigationScheduler> m_navigationScheduler;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 explicit FrameNavigationDisabler(LocalFrame&); 313 explicit FrameNavigationDisabler(LocalFrame&);
312 ~FrameNavigationDisabler(); 314 ~FrameNavigationDisabler();
313 315
314 private: 316 private:
315 Member<LocalFrame> m_frame; 317 Member<LocalFrame> m_frame;
316 }; 318 };
317 319
318 } // namespace blink 320 } // namespace blink
319 321
320 #endif // LocalFrame_h 322 #endif // LocalFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698