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

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

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/xml/XMLErrors.cpp ('k') | Source/core/xml/XMLHttpRequest.cpp » ('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, 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.
11 * 11 *
12 * This library is distributed in the hope that it will be useful, 12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details. 15 * Lesser General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software 18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA
20 */ 20 */
21 21
22 #ifndef XMLHttpRequest_h 22 #ifndef XMLHttpRequest_h
23 #define XMLHttpRequest_h 23 #define XMLHttpRequest_h
24 24
25 #include "ActiveDOMObject.h"
26 #include "EventListener.h"
27 #include "EventNames.h"
28 #include "EventTarget.h"
29 #include "ScriptWrappable.h" 25 #include "ScriptWrappable.h"
30 #include "XMLHttpRequestProgressEventThrottle.h" 26 #include "XMLHttpRequestProgressEventThrottle.h"
27 #include "core/dom/ActiveDOMObject.h"
28 #include "core/dom/EventListener.h"
29 #include "core/dom/EventNames.h"
30 #include "core/dom/EventTarget.h"
31 #include "core/loader/ThreadableLoaderClient.h" 31 #include "core/loader/ThreadableLoaderClient.h"
32 #include "core/page/SecurityOrigin.h" 32 #include "core/page/SecurityOrigin.h"
33 #include "core/platform/network/FormData.h" 33 #include "core/platform/network/FormData.h"
34 #include "core/platform/network/ResourceResponse.h" 34 #include "core/platform/network/ResourceResponse.h"
35 #include <wtf/OwnPtr.h> 35 #include <wtf/OwnPtr.h>
36 #include <wtf/text/AtomicStringHash.h> 36 #include <wtf/text/AtomicStringHash.h>
37 #include <wtf/text/StringBuilder.h> 37 #include <wtf/text/StringBuilder.h>
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 241
242 // An enum corresponding to the allowed string values for the responseType a ttribute. 242 // An enum corresponding to the allowed string values for the responseType a ttribute.
243 ResponseTypeCode m_responseTypeCode; 243 ResponseTypeCode m_responseTypeCode;
244 244
245 RefPtr<SecurityOrigin> m_securityOrigin; 245 RefPtr<SecurityOrigin> m_securityOrigin;
246 }; 246 };
247 247
248 } // namespace WebCore 248 } // namespace WebCore
249 249
250 #endif // XMLHttpRequest_h 250 #endif // XMLHttpRequest_h
OLDNEW
« no previous file with comments | « Source/core/xml/XMLErrors.cpp ('k') | Source/core/xml/XMLHttpRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698