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

Side by Side Diff: Source/core/dom/AXObjectCache.h

Issue 812873003: Clean up forward declarations in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 6 years 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 | « Source/core/css/resolver/StyleResolver.h ('k') | Source/core/dom/RenderTreeBuilder.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) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 14 matching lines...) Expand all
25 25
26 #ifndef AXObjectCache_h 26 #ifndef AXObjectCache_h
27 #define AXObjectCache_h 27 #define AXObjectCache_h
28 28
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 30
31 typedef unsigned AXID; 31 typedef unsigned AXID;
32 32
33 namespace blink { 33 namespace blink {
34 class AXObject; 34 class AXObject;
35 class AbstractInlineTextBox;
36 class FrameView; 35 class FrameView;
37 class Page; 36 class Page;
38 class RenderMenuList; 37 class RenderMenuList;
39 class Widget; 38 class Widget;
40 39
41 class AXObjectCache { 40 class AXObjectCache {
42 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED; 41 WTF_MAKE_NONCOPYABLE(AXObjectCache); WTF_MAKE_FAST_ALLOCATED;
43 public: 42 public:
44 static AXObjectCache* create(Document&); 43 static AXObjectCache* create(Document&);
45 44
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 virtual void handleLayoutComplete(RenderObject*) = 0; 119 virtual void handleLayoutComplete(RenderObject*) = 0;
121 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0; 120 virtual void handleScrolledToAnchor(const Node* anchorNode) = 0;
122 121
123 protected: 122 protected:
124 AXObjectCache(); 123 AXObjectCache();
125 }; 124 };
126 125
127 } 126 }
128 127
129 #endif 128 #endif
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleResolver.h ('k') | Source/core/dom/RenderTreeBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698