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

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

Issue 558283003: avoid ambiguous overload for operator= in FrameView.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 | no next file » | 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 reserv ed. 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
8 8
9 This library is free software; you can redistribute it and/or 9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public 10 modify it under the terms of the GNU Library General Public
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 void updateLayoutAndStyleForPainting(); 213 void updateLayoutAndStyleForPainting();
214 void updateLayoutAndStyleIfNeededRecursive(); 214 void updateLayoutAndStyleIfNeededRecursive();
215 215
216 void invalidateTreeIfNeededRecursive(); 216 void invalidateTreeIfNeededRecursive();
217 217
218 void incrementVisuallyNonEmptyCharacterCount(unsigned); 218 void incrementVisuallyNonEmptyCharacterCount(unsigned);
219 void incrementVisuallyNonEmptyPixelCount(const IntSize&); 219 void incrementVisuallyNonEmptyPixelCount(const IntSize&);
220 void setIsVisuallyNonEmpty() { m_isVisuallyNonEmpty = true; } 220 void setIsVisuallyNonEmpty() { m_isVisuallyNonEmpty = true; }
221 void enableAutoSizeMode(const IntSize& minSize, const IntSize& maxSize); 221 void enableAutoSizeMode(const IntSize& minSize, const IntSize& maxSize);
222 void disableAutoSizeMode() { m_autoSizeInfo = 0; } 222 void disableAutoSizeMode() { m_autoSizeInfo.clear(); }
223 223
224 void forceLayout(bool allowSubtree = false); 224 void forceLayout(bool allowSubtree = false);
225 void forceLayoutForPagination(const FloatSize& pageSize, const FloatSize& or iginalPageSize, float maximumShrinkFactor); 225 void forceLayoutForPagination(const FloatSize& pageSize, const FloatSize& or iginalPageSize, float maximumShrinkFactor);
226 226
227 bool scrollToFragment(const KURL&); 227 bool scrollToFragment(const KURL&);
228 bool scrollToAnchor(const String&); 228 bool scrollToAnchor(const String&);
229 void maintainScrollPositionAtAnchor(Node*); 229 void maintainScrollPositionAtAnchor(Node*);
230 void scrollElementToRect(Element*, const IntRect&); 230 void scrollElementToRect(Element*, const IntRect&);
231 void scrollContentsIfNeededRecursive(); 231 void scrollContentsIfNeededRecursive();
232 232
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); 535 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue);
536 } 536 }
537 private: 537 private:
538 FrameView* m_view; 538 FrameView* m_view;
539 bool m_originalValue; 539 bool m_originalValue;
540 }; 540 };
541 541
542 } // namespace blink 542 } // namespace blink
543 543
544 #endif // FrameView_h 544 #endif // FrameView_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698