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

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

Issue 732803003: Clean up forward declarations in Source/core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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, 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 30 matching lines...) Expand all
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class Blob; 44 class Blob;
45 class BlobDataHandle; 45 class BlobDataHandle;
46 class DOMArrayBuffer; 46 class DOMArrayBuffer;
47 class DOMFormData; 47 class DOMFormData;
48 class Document; 48 class Document;
49 class DocumentParser; 49 class DocumentParser;
50 class ExceptionState; 50 class ExceptionState;
51 class ResourceRequest;
52 class SecurityOrigin; 51 class SecurityOrigin;
53 class SharedBuffer; 52 class SharedBuffer;
54 class Stream; 53 class Stream;
55 class TextResourceDecoder; 54 class TextResourceDecoder;
56 class ThreadableLoader; 55 class ThreadableLoader;
57 class UnderlyingSource; 56 class UnderlyingSource;
58 class XMLHttpRequestUpload; 57 class XMLHttpRequestUpload;
59 58
60 typedef int ExceptionCode; 59 typedef int ExceptionCode;
61 60
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 bool m_uploadComplete; 303 bool m_uploadComplete;
305 bool m_sameOriginRequest; 304 bool m_sameOriginRequest;
306 // True iff the ongoing resource loading is using the downloadToFile 305 // True iff the ongoing resource loading is using the downloadToFile
307 // option. 306 // option.
308 bool m_downloadingToFile; 307 bool m_downloadingToFile;
309 }; 308 };
310 309
311 } // namespace blink 310 } // namespace blink
312 311
313 #endif // XMLHttpRequest_h 312 #endif // XMLHttpRequest_h
OLDNEW
« no previous file with comments | « Source/core/xml/XSLImportRule.h ('k') | Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698