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

Side by Side Diff: Source/WebCore/inspector/InspectorResourceAgent.h

Issue 13646003: DevTools: Remove ENABLE(INSPECTOR) and ENABLE(JAVASCRIPT_DEBUGGER) from the code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 #define InspectorResourceAgent_h 32 #define InspectorResourceAgent_h
33 33
34 #include "InspectorBaseAgent.h" 34 #include "InspectorBaseAgent.h"
35 #include "InspectorFrontend.h" 35 #include "InspectorFrontend.h"
36 36
37 #include <wtf/PassOwnPtr.h> 37 #include <wtf/PassOwnPtr.h>
38 #include <wtf/RefCounted.h> 38 #include <wtf/RefCounted.h>
39 #include <wtf/Vector.h> 39 #include <wtf/Vector.h>
40 #include <wtf/text/WTFString.h> 40 #include <wtf/text/WTFString.h>
41 41
42 #if ENABLE(INSPECTOR)
43 42
44 namespace WTF { 43 namespace WTF {
45 class String; 44 class String;
46 } 45 }
47 46
48 namespace WebCore { 47 namespace WebCore {
49 48
50 class CachedResource; 49 class CachedResource;
51 class Document; 50 class Document;
52 class DocumentLoader; 51 class DocumentLoader;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 168
170 typedef HashMap<ThreadableLoaderClient*, RefPtr<XHRReplayData> > PendingXHRR eplayDataMap; 169 typedef HashMap<ThreadableLoaderClient*, RefPtr<XHRReplayData> > PendingXHRR eplayDataMap;
171 PendingXHRReplayDataMap m_pendingXHRReplayData; 170 PendingXHRReplayDataMap m_pendingXHRReplayData;
172 // FIXME: InspectorResourceAgent should now be aware of style recalculation. 171 // FIXME: InspectorResourceAgent should now be aware of style recalculation.
173 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; 172 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator;
174 bool m_isRecalculatingStyle; 173 bool m_isRecalculatingStyle;
175 }; 174 };
176 175
177 } // namespace WebCore 176 } // namespace WebCore
178 177
179 #endif // ENABLE(INSPECTOR)
180 178
181 #endif // !defined(InspectorResourceAgent_h) 179 #endif // !defined(InspectorResourceAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698