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

Side by Side Diff: Source/core/rendering/RenderObject.h

Issue 23890025: WIP (Introduce WTF::NonNullPtr<T>.) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderLayerCompositor.cpp ('k') | Source/core/rendering/RenderObject.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) 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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 virtual int nextOffset(int current) const; 943 virtual int nextOffset(int current) const;
944 944
945 virtual void imageChanged(ImageResource*, const IntRect* = 0); 945 virtual void imageChanged(ImageResource*, const IntRect* = 0);
946 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) { } 946 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) { }
947 virtual bool willRenderImage(ImageResource*); 947 virtual bool willRenderImage(ImageResource*);
948 948
949 void selectionStartEnd(int& spos, int& epos) const; 949 void selectionStartEnd(int& spos, int& epos) const;
950 950
951 void remove() { if (parent()) parent()->removeChild(this); } 951 void remove() { if (parent()) parent()->removeChild(this); }
952 952
953 AnimationController* animation() const; 953 NonNullPtr<AnimationController> animation() const;
954 954
955 bool isInert() const; 955 bool isInert() const;
956 bool visibleToHitTestRequest(const HitTestRequest& request) const { return s tyle()->visibility() == VISIBLE && (request.ignorePointerEventsNone() || style() ->pointerEvents() != PE_NONE) && !isInert(); } 956 bool visibleToHitTestRequest(const HitTestRequest& request) const { return s tyle()->visibility() == VISIBLE && (request.ignorePointerEventsNone() || style() ->pointerEvents() != PE_NONE) && !isInert(); }
957 bool visibleToHitTesting() const { return style()->visibility() == VISIBLE & & style()->pointerEvents() != PE_NONE && !isInert(); } 957 bool visibleToHitTesting() const { return style()->visibility() == VISIBLE & & style()->pointerEvents() != PE_NONE && !isInert(); }
958 958
959 // Map points and quads through elements, potentially via 3d transforms. You should never need to call these directly; use 959 // Map points and quads through elements, potentially via 3d transforms. You should never need to call these directly; use
960 // localToAbsolute/absoluteToLocal methods instead. 960 // localToAbsolute/absoluteToLocal methods instead.
961 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContai ner, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const; 961 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContai ner, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const;
962 virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) c onst; 962 virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) c onst;
963 963
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 void showTree(const WebCore::RenderObject*); 1376 void showTree(const WebCore::RenderObject*);
1377 void showLineTree(const WebCore::RenderObject*); 1377 void showLineTree(const WebCore::RenderObject*);
1378 void showRenderTree(const WebCore::RenderObject* object1); 1378 void showRenderTree(const WebCore::RenderObject* object1);
1379 // We don't make object2 an optional parameter so that showRenderTree 1379 // We don't make object2 an optional parameter so that showRenderTree
1380 // can be called from gdb easily. 1380 // can be called from gdb easily.
1381 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1381 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1382 1382
1383 #endif 1383 #endif
1384 1384
1385 #endif // RenderObject_h 1385 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerCompositor.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698