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

Side by Side Diff: Source/core/inspector/InspectorResourceAgent.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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) 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 * * 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 28 matching lines...) Expand all
39 #include "ExceptionCodePlaceholder.h" 39 #include "ExceptionCodePlaceholder.h"
40 #include "Frame.h" 40 #include "Frame.h"
41 #include "FrameLoader.h" 41 #include "FrameLoader.h"
42 #include "IdentifiersFactory.h" 42 #include "IdentifiersFactory.h"
43 #include "InspectorClient.h" 43 #include "InspectorClient.h"
44 #include "InspectorFrontend.h" 44 #include "InspectorFrontend.h"
45 #include "InspectorPageAgent.h" 45 #include "InspectorPageAgent.h"
46 #include "InspectorState.h" 46 #include "InspectorState.h"
47 #include "InspectorValues.h" 47 #include "InspectorValues.h"
48 #include "InstrumentingAgents.h" 48 #include "InstrumentingAgents.h"
49 #include "KURL.h"
50 #include "MemoryCache.h" 49 #include "MemoryCache.h"
51 #include "NetworkResourcesData.h" 50 #include "NetworkResourcesData.h"
52 #include "Page.h" 51 #include "Page.h"
53 #include "ResourceLoader.h" 52 #include "ResourceLoader.h"
54 #include "ScriptCallStack.h" 53 #include "ScriptCallStack.h"
55 #include "ScriptCallStackFactory.h" 54 #include "ScriptCallStackFactory.h"
56 #include "ScriptableDocumentParser.h" 55 #include "ScriptableDocumentParser.h"
57 #include "WebSocketFrame.h" 56 #include "WebSocketFrame.h"
58 #include "WebSocketHandshakeRequest.h" 57 #include "WebSocketHandshakeRequest.h"
59 #include "WebSocketHandshakeResponse.h" 58 #include "WebSocketHandshakeResponse.h"
60 #include "XMLHttpRequest.h" 59 #include "XMLHttpRequest.h"
61 #include "core/loader/UniqueIdentifier.h" 60 #include "core/loader/UniqueIdentifier.h"
61 #include "core/platform/KURL.h"
62 #include "core/platform/network/HTTPHeaderMap.h" 62 #include "core/platform/network/HTTPHeaderMap.h"
63 #include "core/platform/network/ResourceError.h" 63 #include "core/platform/network/ResourceError.h"
64 #include "core/platform/network/ResourceRequest.h" 64 #include "core/platform/network/ResourceRequest.h"
65 #include "core/platform/network/ResourceResponse.h" 65 #include "core/platform/network/ResourceResponse.h"
66 #include <wtf/CurrentTime.h> 66 #include <wtf/CurrentTime.h>
67 #include <wtf/HexNumber.h> 67 #include <wtf/HexNumber.h>
68 #include <wtf/ListHashSet.h> 68 #include <wtf/ListHashSet.h>
69 #include <wtf/MemoryInstrumentationHashMap.h> 69 #include <wtf/MemoryInstrumentationHashMap.h>
70 #include <wtf/RefPtr.h> 70 #include <wtf/RefPtr.h>
71 #include <wtf/text/StringBuilder.h> 71 #include <wtf/text/StringBuilder.h>
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 , m_client(client) 662 , m_client(client)
663 , m_frontend(0) 663 , m_frontend(0)
664 , m_resourcesData(adoptPtr(new NetworkResourcesData())) 664 , m_resourcesData(adoptPtr(new NetworkResourcesData()))
665 , m_loadingXHRSynchronously(false) 665 , m_loadingXHRSynchronously(false)
666 , m_isRecalculatingStyle(false) 666 , m_isRecalculatingStyle(false)
667 { 667 {
668 } 668 }
669 669
670 } // namespace WebCore 670 } // namespace WebCore
671 671
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorProfilerAgent.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698