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

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: Created 4 years, 12 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 187
188 void updateSecurityOrigin(SecurityOrigin*); 188 void updateSecurityOrigin(SecurityOrigin*);
189 189
190 bool isNavigationAllowed() const { return m_navigationDisableCount == 0; } 190 bool isNavigationAllowed() const { return m_navigationDisableCount == 0; }
191 191
192 private: 192 private:
193 friend class FrameNavigationDisabler; 193 friend class FrameNavigationDisabler;
194 194
195 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*); 195 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*);
196 196
197 DISPLAY_ITEM_CACHE_STATUS_UNCACHEABLE_IMPLEMENTATION
198
197 // Internal Frame helper overrides: 199 // Internal Frame helper overrides:
198 WindowProxyManager* windowProxyManager() const override; 200 WindowProxyManager* windowProxyManager() const override;
199 201
200 String localLayerTreeAsText(unsigned flags) const; 202 String localLayerTreeAsText(unsigned flags) const;
201 203
202 // Paints the area for the given rect into a DragImage, with the given displ ayItemClient id attached. 204 // Paints the area for the given rect into a DragImage, with the given displ ayItemClient id attached.
203 // The rect is in the coordinate space of the frame. 205 // The rect is in the coordinate space of the frame.
204 PassOwnPtr<DragImage> paintIntoDragImage(const DisplayItemClient&, 206 PassOwnPtr<DragImage> paintIntoDragImage(const DisplayItemClient&,
205 RespectImageOrientationEnum shouldRespectImageOrientation, const GlobalP aintFlags, 207 RespectImageOrientationEnum shouldRespectImageOrientation, const GlobalP aintFlags,
206 IntRect paintingRect, float opacity = 1); 208 IntRect paintingRect, float opacity = 1);
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 explicit FrameNavigationDisabler(LocalFrame&); 324 explicit FrameNavigationDisabler(LocalFrame&);
323 ~FrameNavigationDisabler(); 325 ~FrameNavigationDisabler();
324 326
325 private: 327 private:
326 RawPtrWillBeMember<LocalFrame> m_frame; 328 RawPtrWillBeMember<LocalFrame> m_frame;
327 }; 329 };
328 330
329 } // namespace blink 331 } // namespace blink
330 332
331 #endif // LocalFrame_h 333 #endif // LocalFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698