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

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

Issue 1406923009: Rename DISALLOW_ALLOCATION and ALLOW_ONLY_INLINE_ALLOCATION (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Simon Hausmann <hausmann@kde.org> 3 * (C) 2000 Simon Hausmann <hausmann@kde.org>
4 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. 4 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 bool userResize(MouseEvent*); 74 bool userResize(MouseEvent*);
75 75
76 bool canResizeRow(const IntPoint&) const; 76 bool canResizeRow(const IntPoint&) const;
77 bool canResizeColumn(const IntPoint&) const; 77 bool canResizeColumn(const IntPoint&) const;
78 78
79 void notifyFrameEdgeInfoChanged(); 79 void notifyFrameEdgeInfoChanged();
80 HTMLFrameSetElement* frameSet() const; 80 HTMLFrameSetElement* frameSet() const;
81 81
82 class GridAxis { 82 class GridAxis {
83 DISALLOW_ALLOCATION(); 83 DISALLOW_NEW();
84 WTF_MAKE_NONCOPYABLE(GridAxis); 84 WTF_MAKE_NONCOPYABLE(GridAxis);
85 public: 85 public:
86 GridAxis(); 86 GridAxis();
87 void resize(int); 87 void resize(int);
88 88
89 Vector<int> m_sizes; 89 Vector<int> m_sizes;
90 Vector<int> m_deltas; 90 Vector<int> m_deltas;
91 Vector<bool> m_preventResize; 91 Vector<bool> m_preventResize;
92 Vector<bool> m_allowBorder; 92 Vector<bool> m_allowBorder;
93 int m_splitBeingResized; 93 int m_splitBeingResized;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 133
134 bool m_isResizing; 134 bool m_isResizing;
135 bool m_isChildResizing; 135 bool m_isChildResizing;
136 }; 136 };
137 137
138 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFrameSet, isFrameSet()); 138 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFrameSet, isFrameSet());
139 139
140 } // namespace blink 140 } // namespace blink
141 141
142 #endif // LayoutFrameSet_h 142 #endif // LayoutFrameSet_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBox.h ('k') | third_party/WebKit/Source/core/layout/LayoutGeometryMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698