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

Side by Side Diff: third_party/WebKit/Source/core/inspector/NetworkResourcesData.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
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 * 10 *
(...skipping 19 matching lines...) Expand all
30 #define NetworkResourcesData_h 30 #define NetworkResourcesData_h
31 31
32 #include "core/dom/ContextLifecycleObserver.h" 32 #include "core/dom/ContextLifecycleObserver.h"
33 #include "core/html/parser/TextResourceDecoder.h" 33 #include "core/html/parser/TextResourceDecoder.h"
34 #include "core/inspector/InspectorPageAgent.h" 34 #include "core/inspector/InspectorPageAgent.h"
35 #include "platform/blob/BlobData.h" 35 #include "platform/blob/BlobData.h"
36 #include "platform/network/HTTPHeaderMap.h" 36 #include "platform/network/HTTPHeaderMap.h"
37 #include "platform/weborigin/KURL.h" 37 #include "platform/weborigin/KURL.h"
38 #include "wtf/Deque.h" 38 #include "wtf/Deque.h"
39 #include "wtf/HashMap.h" 39 #include "wtf/HashMap.h"
40 #include "wtf/RefCounted.h"
41 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
42 41
43 42
44 namespace blink { 43 namespace blink {
45 44
46 class EncodedFormData; 45 class EncodedFormData;
47 class ExecutionContext; 46 class ExecutionContext;
48 class Resource; 47 class Resource;
49 class ResourceResponse; 48 class ResourceResponse;
50 class SharedBuffer; 49 class SharedBuffer;
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 ResourceDataMap m_requestIdToResourceDataMap; 196 ResourceDataMap m_requestIdToResourceDataMap;
198 size_t m_contentSize; 197 size_t m_contentSize;
199 size_t m_maximumResourcesContentSize; 198 size_t m_maximumResourcesContentSize;
200 size_t m_maximumSingleResourceContentSize; 199 size_t m_maximumSingleResourceContentSize;
201 }; 200 };
202 201
203 } // namespace blink 202 } // namespace blink
204 203
205 204
206 #endif // !defined(NetworkResourcesData_h) 205 #endif // !defined(NetworkResourcesData_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698