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

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

Issue 2202493002: NOT FOR REVIEW: Fullscreen WIP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef LayoutItem_h 5 #ifndef LayoutItem_h
6 #define LayoutItem_h 6 #define LayoutItem_h
7 7
8 #include "core/inspector/InspectorTraceEvents.h" 8 #include "core/inspector/InspectorTraceEvents.h"
9 #include "core/layout/LayoutObject.h" 9 #include "core/layout/LayoutObject.h"
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 bool isText() const { return m_layoutObject->isText(); } 56 bool isText() const { return m_layoutObject->isText(); }
57 57
58 bool isTextControl() const { return m_layoutObject->isTextControl(); } 58 bool isTextControl() const { return m_layoutObject->isTextControl(); }
59 59
60 bool isLayoutPart() const { return m_layoutObject->isLayoutPart(); } 60 bool isLayoutPart() const { return m_layoutObject->isLayoutPart(); }
61 61
62 bool isEmbeddedObject() const { return m_layoutObject->isEmbeddedObject(); } 62 bool isEmbeddedObject() const { return m_layoutObject->isEmbeddedObject(); }
63 63
64 bool isImage() const { return m_layoutObject->isImage(); } 64 bool isImage() const { return m_layoutObject->isImage(); }
65 65
66 bool isLayoutFullScreen() const {
67 return m_layoutObject->isLayoutFullScreen();
68 }
69
70 bool isListItem() const { return m_layoutObject->isListItem(); } 66 bool isListItem() const { return m_layoutObject->isListItem(); }
71 67
72 bool isMedia() const { return m_layoutObject->isMedia(); } 68 bool isMedia() const { return m_layoutObject->isMedia(); }
73 69
74 bool isMenuList() const { return m_layoutObject->isMenuList(); } 70 bool isMenuList() const { return m_layoutObject->isMenuList(); }
75 71
76 bool isProgress() const { return m_layoutObject->isProgress(); } 72 bool isProgress() const { return m_layoutObject->isProgress(); }
77 73
78 bool isSlider() const { return m_layoutObject->isSlider(); } 74 bool isSlider() const { return m_layoutObject->isSlider(); }
79 75
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 237
242 private: 238 private:
243 LayoutObject* m_layoutObject; 239 LayoutObject* m_layoutObject;
244 240
245 friend class LayoutAPIShim; 241 friend class LayoutAPIShim;
246 }; 242 };
247 243
248 } // namespace blink 244 } // namespace blink
249 245
250 #endif // LayoutItem_h 246 #endif // LayoutItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698