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

Side by Side Diff: Source/core/xml/XMLHttpRequest.h

Issue 656683009: Clean up forward declarations in Source/core/events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/core/html/track/TextTrackCue.h ('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) 2003, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com> 3 * Copyright (C) 2005, 2006 Alexey Proskuryakov <ap@nypop.com>
4 * Copyright (C) 2011 Google Inc. All rights reserved. 4 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * Copyright (C) 2012 Intel Corporation 5 * Copyright (C) 2012 Intel Corporation
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public 8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 class Document; 46 class Document;
47 class DocumentParser; 47 class DocumentParser;
48 class ExceptionState; 48 class ExceptionState;
49 class ResourceRequest; 49 class ResourceRequest;
50 class SecurityOrigin; 50 class SecurityOrigin;
51 class SharedBuffer; 51 class SharedBuffer;
52 class Stream; 52 class Stream;
53 class TextResourceDecoder; 53 class TextResourceDecoder;
54 class ThreadableLoader; 54 class ThreadableLoader;
55 class UnderlyingSource; 55 class UnderlyingSource;
56 class XMLHttpRequestUpload;
56 57
57 typedef int ExceptionCode; 58 typedef int ExceptionCode;
58 59
59 class XMLHttpRequest final 60 class XMLHttpRequest final
60 : public RefCountedWillBeGarbageCollectedFinalized<XMLHttpRequest> 61 : public RefCountedWillBeGarbageCollectedFinalized<XMLHttpRequest>
61 , public XMLHttpRequestEventTarget 62 , public XMLHttpRequestEventTarget
62 , private ThreadableLoaderClient 63 , private ThreadableLoaderClient
63 , public DocumentParserClient 64 , public DocumentParserClient
64 , public ActiveDOMObject { 65 , public ActiveDOMObject {
65 DEFINE_WRAPPERTYPEINFO(); 66 DEFINE_WRAPPERTYPEINFO();
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 bool m_uploadComplete; 306 bool m_uploadComplete;
306 bool m_sameOriginRequest; 307 bool m_sameOriginRequest;
307 // True iff the ongoing resource loading is using the downloadToFile 308 // True iff the ongoing resource loading is using the downloadToFile
308 // option. 309 // option.
309 bool m_downloadingToFile; 310 bool m_downloadingToFile;
310 }; 311 };
311 312
312 } // namespace blink 313 } // namespace blink
313 314
314 #endif // XMLHttpRequest_h 315 #endif // XMLHttpRequest_h
OLDNEW
« no previous file with comments | « Source/core/html/track/TextTrackCue.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698