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

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

Issue 2730773003: Rename FrameViewBase fields and methods *Widget* to ...FrameViewBase... (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | third_party/WebKit/Source/core/frame/FrameView.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) 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 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 947
948 void recordDeferredLoadingStats(); 948 void recordDeferredLoadingStats();
949 949
950 DocumentLifecycle& lifecycle() const; 950 DocumentLifecycle& lifecycle() const;
951 951
952 void contentsResized() override; 952 void contentsResized() override;
953 void scrollbarExistenceDidChange(); 953 void scrollbarExistenceDidChange();
954 954
955 // Override FrameViewBase methods to do point conversion via layoutObjects, in 955 // Override FrameViewBase methods to do point conversion via layoutObjects, in
956 // order to take transforms into account. 956 // order to take transforms into account.
957 IntRect convertToContainingWidget(const IntRect&) const override; 957 IntRect convertToContainingFrameViewBase(const IntRect&) const override;
958 IntRect convertFromContainingWidget(const IntRect&) const override; 958 IntRect convertFromContainingFrameViewBase(const IntRect&) const override;
959 IntPoint convertToContainingWidget(const IntPoint&) const override; 959 IntPoint convertToContainingFrameViewBase(const IntPoint&) const override;
960 IntPoint convertFromContainingWidget(const IntPoint&) const override; 960 IntPoint convertFromContainingFrameViewBase(const IntPoint&) const override;
961 961
962 void didChangeGlobalRootScroller() override; 962 void didChangeGlobalRootScroller() override;
963 963
964 void updateWidgetGeometriesIfNeeded(); 964 void updateWidgetGeometriesIfNeeded();
965 965
966 bool wasViewportResized(); 966 bool wasViewportResized();
967 void sendResizeEventIfNeeded(); 967 void sendResizeEventIfNeeded();
968 968
969 void updateParentScrollableAreaSet(); 969 void updateParentScrollableAreaSet();
970 970
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 frameViewBase.isFrameView()); 1260 frameViewBase.isFrameView());
1261 DEFINE_TYPE_CASTS(FrameView, 1261 DEFINE_TYPE_CASTS(FrameView,
1262 ScrollableArea, 1262 ScrollableArea,
1263 scrollableArea, 1263 scrollableArea,
1264 scrollableArea->isFrameView(), 1264 scrollableArea->isFrameView(),
1265 scrollableArea.isFrameView()); 1265 scrollableArea.isFrameView());
1266 1266
1267 } // namespace blink 1267 } // namespace blink
1268 1268
1269 #endif // FrameView_h 1269 #endif // FrameView_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698