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

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

Issue 2460243002: blink: Cleanup Document.h class forward declarations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing class forward decl in AXObjectCache.h 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.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 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 20 matching lines...) Expand all
31 #include "core/dom/Document.h" 31 #include "core/dom/Document.h"
32 #include <memory> 32 #include <memory>
33 33
34 typedef unsigned AXID; 34 typedef unsigned AXID;
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class AbstractInlineTextBox; 38 class AbstractInlineTextBox;
39 class AXObject; 39 class AXObject;
40 class FrameView; 40 class FrameView;
41 class HTMLCanvasElement;
41 class HTMLOptionElement; 42 class HTMLOptionElement;
42 class HTMLSelectElement; 43 class HTMLSelectElement;
43 class LayoutMenuList; 44 class LayoutMenuList;
44 class LineLayoutItem; 45 class LineLayoutItem;
45 class Page; 46 class Page;
46 47
47 class CORE_EXPORT AXObjectCache 48 class CORE_EXPORT AXObjectCache
48 : public GarbageCollectedFinalized<AXObjectCache> { 49 : public GarbageCollectedFinalized<AXObjectCache> {
49 WTF_MAKE_NONCOPYABLE(AXObjectCache); 50 WTF_MAKE_NONCOPYABLE(AXObjectCache);
50 51
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 private: 175 private:
175 explicit ScopedAXObjectCache(Document&); 176 explicit ScopedAXObjectCache(Document&);
176 177
177 Persistent<Document> m_document; 178 Persistent<Document> m_document;
178 Persistent<AXObjectCache> m_cache; 179 Persistent<AXObjectCache> m_cache;
179 }; 180 };
180 181
181 } // namespace blink 182 } // namespace blink
182 183
183 #endif 184 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698