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

Side by Side Diff: third_party/WebKit/Source/web/WebAXObject.cpp

Issue 2008503003: Eliminate unnecessary includes of LayoutBlockFlow-derived headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: styleRef(bool) needs LayoutObjectInlines.h Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/web/PageWidgetDelegate.cpp ('k') | no next file » | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 #include "SkMatrix44.h" 33 #include "SkMatrix44.h"
34 #include "core/HTMLNames.h" 34 #include "core/HTMLNames.h"
35 #include "core/css/CSSPrimitiveValueMappings.h" 35 #include "core/css/CSSPrimitiveValueMappings.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/dom/Node.h" 37 #include "core/dom/Node.h"
38 #include "core/editing/markers/DocumentMarker.h" 38 #include "core/editing/markers/DocumentMarker.h"
39 #include "core/frame/FrameHost.h" 39 #include "core/frame/FrameHost.h"
40 #include "core/frame/FrameView.h" 40 #include "core/frame/FrameView.h"
41 #include "core/frame/VisualViewport.h" 41 #include "core/frame/VisualViewport.h"
42 #include "core/input/EventHandler.h" 42 #include "core/input/EventHandler.h"
43 #include "core/layout/LayoutView.h"
44 #include "core/style/ComputedStyle.h" 43 #include "core/style/ComputedStyle.h"
45 #include "core/page/Page.h" 44 #include "core/page/Page.h"
46 #include "modules/accessibility/AXObject.h" 45 #include "modules/accessibility/AXObject.h"
47 #include "modules/accessibility/AXObjectCacheImpl.h" 46 #include "modules/accessibility/AXObjectCacheImpl.h"
48 #include "modules/accessibility/AXTable.h" 47 #include "modules/accessibility/AXTable.h"
49 #include "modules/accessibility/AXTableCell.h" 48 #include "modules/accessibility/AXTableCell.h"
50 #include "modules/accessibility/AXTableColumn.h" 49 #include "modules/accessibility/AXTableColumn.h"
51 #include "modules/accessibility/AXTableRow.h" 50 #include "modules/accessibility/AXTableRow.h"
52 #include "platform/PlatformKeyboardEvent.h" 51 #include "platform/PlatformKeyboardEvent.h"
53 #include "public/platform/WebPoint.h" 52 #include "public/platform/WebPoint.h"
(...skipping 1510 matching lines...) Expand 10 before | Expand all | Expand 10 after
1564 m_private = object; 1563 m_private = object;
1565 return *this; 1564 return *this;
1566 } 1565 }
1567 1566
1568 WebAXObject::operator AXObject*() const 1567 WebAXObject::operator AXObject*() const
1569 { 1568 {
1570 return m_private.get(); 1569 return m_private.get();
1571 } 1570 }
1572 1571
1573 } // namespace blink 1572 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/PageWidgetDelegate.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698