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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 2320793002: Fix typo in method name. (Closed)
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
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 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 1326
1327 virtual void clearPaintInvalidationFlags(); 1327 virtual void clearPaintInvalidationFlags();
1328 1328
1329 bool mayNeedPaintInvalidation() const { return m_bitfields.mayNeedPaintInval idation(); } 1329 bool mayNeedPaintInvalidation() const { return m_bitfields.mayNeedPaintInval idation(); }
1330 void setMayNeedPaintInvalidation(); 1330 void setMayNeedPaintInvalidation();
1331 1331
1332 bool mayNeedPaintInvalidationSubtree() const { return m_bitfields.mayNeedPai ntInvalidationSubtree(); } 1332 bool mayNeedPaintInvalidationSubtree() const { return m_bitfields.mayNeedPai ntInvalidationSubtree(); }
1333 void setMayNeedPaintInvalidationSubtree(); 1333 void setMayNeedPaintInvalidationSubtree();
1334 1334
1335 bool mayNeedPaintInvalidationAnimatedBackgroundImage() const { return m_bitf ields.mayNeedPaintInvalidationAnimatedBackgroundImage(); } 1335 bool mayNeedPaintInvalidationAnimatedBackgroundImage() const { return m_bitf ields.mayNeedPaintInvalidationAnimatedBackgroundImage(); }
1336 void setMayNeedPaintInvalidationAnimatgedBackgroundImage(); 1336 void setMayNeedPaintInvalidationAnimatedBackgroundImage();
1337 1337
1338 bool shouldInvalidateSelection() const { return m_bitfields.shouldInvalidate Selection(); } 1338 bool shouldInvalidateSelection() const { return m_bitfields.shouldInvalidate Selection(); }
1339 void setShouldInvalidateSelection(); 1339 void setShouldInvalidateSelection();
1340 1340
1341 bool shouldCheckForPaintInvalidation(const PaintInvalidationState& paintInva lidationState) const 1341 bool shouldCheckForPaintInvalidation(const PaintInvalidationState& paintInva lidationState) const
1342 { 1342 {
1343 return paintInvalidationState.hasForcedSubtreeInvalidationFlags() 1343 return paintInvalidationState.hasForcedSubtreeInvalidationFlags()
1344 || shouldCheckForPaintInvalidationRegardlessOfPaintInvalidationState (); 1344 || shouldCheckForPaintInvalidationRegardlessOfPaintInvalidationState ();
1345 } 1345 }
1346 1346
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
2134 void showTree(const blink::LayoutObject*); 2134 void showTree(const blink::LayoutObject*);
2135 void showLineTree(const blink::LayoutObject*); 2135 void showLineTree(const blink::LayoutObject*);
2136 void showLayoutTree(const blink::LayoutObject* object1); 2136 void showLayoutTree(const blink::LayoutObject* object1);
2137 // We don't make object2 an optional parameter so that showLayoutTree 2137 // We don't make object2 an optional parameter so that showLayoutTree
2138 // can be called from gdb easily. 2138 // can be called from gdb easily.
2139 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 2139 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
2140 2140
2141 #endif 2141 #endif
2142 2142
2143 #endif // LayoutObject_h 2143 #endif // LayoutObject_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBox.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698