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

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

Issue 2862293002: Finish removing FrameLoader::Clear() (Closed)
Patch Set: Drop unnecessary #include Created 3 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) 1997 Martin Jones (mjones@kde.org) 2 Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 (C) 1998 Waldo Bastian (bastian@kde.org) 3 (C) 1998 Waldo Bastian (bastian@kde.org)
4 (C) 1998, 1999 Torben Weis (weis@kde.org) 4 (C) 1998, 1999 Torben Weis (weis@kde.org)
5 (C) 1999 Lars Knoll (knoll@kde.org) 5 (C) 1999 Lars Knoll (knoll@kde.org)
6 (C) 1999 Antti Koivisto (koivisto@kde.org) 6 (C) 1999 Antti Koivisto (koivisto@kde.org)
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
8 reserved. 8 reserved.
9 9
10 This library is free software; you can redistribute it and/or 10 This library is free software; you can redistribute it and/or
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 197
198 void RecalcOverflowAfterStyleChange(); 198 void RecalcOverflowAfterStyleChange();
199 199
200 bool IsEnclosedInCompositingLayer() const; 200 bool IsEnclosedInCompositingLayer() const;
201 201
202 void Dispose() override; 202 void Dispose() override;
203 void DetachScrollbars(); 203 void DetachScrollbars();
204 void RecalculateCustomScrollbarStyle(); 204 void RecalculateCustomScrollbarStyle();
205 void InvalidateAllCustomScrollbarsOnActiveChanged(); 205 void InvalidateAllCustomScrollbarsOnActiveChanged();
206 206
207 void Clear();
208
209 // True if the FrameView's base background color is completely opaque. 207 // True if the FrameView's base background color is completely opaque.
210 bool HasOpaqueBackground() const; 208 bool HasOpaqueBackground() const;
211 209
212 Color BaseBackgroundColor() const; 210 Color BaseBackgroundColor() const;
213 void SetBaseBackgroundColor(const Color&); 211 void SetBaseBackgroundColor(const Color&);
214 void UpdateBaseBackgroundColorRecursively(const Color&); 212 void UpdateBaseBackgroundColorRecursively(const Color&);
215 213
216 void AdjustViewSize(); 214 void AdjustViewSize();
217 void AdjustViewSizeAndLayout(); 215 void AdjustViewSizeAndLayout();
218 216
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after
1274 frame_or_plugin.IsFrameView()); 1272 frame_or_plugin.IsFrameView());
1275 DEFINE_TYPE_CASTS(FrameView, 1273 DEFINE_TYPE_CASTS(FrameView,
1276 ScrollableArea, 1274 ScrollableArea,
1277 scrollableArea, 1275 scrollableArea,
1278 scrollableArea->IsFrameView(), 1276 scrollableArea->IsFrameView(),
1279 scrollableArea.IsFrameView()); 1277 scrollableArea.IsFrameView());
1280 1278
1281 } // namespace blink 1279 } // namespace blink
1282 1280
1283 #endif // FrameView_h 1281 #endif // FrameView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698