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

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

Issue 14383002: Apply FINAL to the RenderObject hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase, add OVERRIDEs. Created 7 years, 8 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/RenderVideo.h ('k') | Source/core/rendering/RenderWidget.h » ('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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2006 Apple Computer, Inc. 3 * Copyright (C) 2006 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 21 matching lines...) Expand all
32 32
33 class FlowThreadController; 33 class FlowThreadController;
34 class RenderLayerCompositor; 34 class RenderLayerCompositor;
35 class RenderQuote; 35 class RenderQuote;
36 class RenderWidget; 36 class RenderWidget;
37 37
38 #if USE(3D_GRAPHICS) 38 #if USE(3D_GRAPHICS)
39 class CustomFilterGlobalContext; 39 class CustomFilterGlobalContext;
40 #endif 40 #endif
41 41
42 class RenderView : public RenderBlock { 42 class RenderView FINAL : public RenderBlock {
43 public: 43 public:
44 explicit RenderView(Document*); 44 explicit RenderView(Document*);
45 virtual ~RenderView(); 45 virtual ~RenderView();
46 46
47 bool hitTest(const HitTestRequest&, HitTestResult&); 47 bool hitTest(const HitTestRequest&, HitTestResult&);
48 bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&); 48 bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&);
49 49
50 virtual const char* renderName() const OVERRIDE { return "RenderView"; } 50 virtual const char* renderName() const OVERRIDE { return "RenderView"; }
51 51
52 virtual bool isRenderView() const OVERRIDE { return true; } 52 virtual bool isRenderView() const OVERRIDE { return true; }
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 RenderObject::FlowThreadState m_flowThreadState; 439 RenderObject::FlowThreadState m_flowThreadState;
440 bool m_fragmenting; 440 bool m_fragmenting;
441 #ifndef NDEBUG 441 #ifndef NDEBUG
442 LayoutState* m_layoutState; 442 LayoutState* m_layoutState;
443 #endif 443 #endif
444 }; 444 };
445 445
446 } // namespace WebCore 446 } // namespace WebCore
447 447
448 #endif // RenderView_h 448 #endif // RenderView_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderVideo.h ('k') | Source/core/rendering/RenderWidget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698