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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines 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
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 25 matching lines...) Expand all
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 HTMLCanvasElement;
42 class HTMLOptionElement; 42 class HTMLOptionElement;
43 class HTMLSelectElement; 43 class HTMLSelectElement;
44 class LayoutMenuList; 44 class LayoutMenuList;
45 class LineLayoutItem; 45 class LineLayoutItem;
46 class Page;
47 46
48 class CORE_EXPORT AXObjectCache 47 class CORE_EXPORT AXObjectCache
49 : public GarbageCollectedFinalized<AXObjectCache> { 48 : public GarbageCollectedFinalized<AXObjectCache> {
50 WTF_MAKE_NONCOPYABLE(AXObjectCache); 49 WTF_MAKE_NONCOPYABLE(AXObjectCache);
51 50
52 public: 51 public:
53 static AXObjectCache* create(Document&); 52 static AXObjectCache* create(Document&);
54 53
55 static AXObject* focusedObject(); 54 static AXObject* focusedObject();
56 55
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 private: 174 private:
176 explicit ScopedAXObjectCache(Document&); 175 explicit ScopedAXObjectCache(Document&);
177 176
178 Persistent<Document> m_document; 177 Persistent<Document> m_document;
179 Persistent<AXObjectCache> m_cache; 178 Persistent<AXObjectCache> m_cache;
180 }; 179 };
181 180
182 } // namespace blink 181 } // namespace blink
183 182
184 #endif 183 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698