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

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

Issue 13840007: Absolutify paths to platform/network. (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) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
4 * Copyright (C) 2011 Google Inc. All rights reserved. 4 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 25 matching lines...) Expand all
36 #include "Frame.h" 36 #include "Frame.h"
37 #include "InjectedScriptHost.h" 37 #include "InjectedScriptHost.h"
38 #include "InjectedScriptManager.h" 38 #include "InjectedScriptManager.h"
39 #include "InspectorController.h" 39 #include "InspectorController.h"
40 #include "InspectorFrontend.h" 40 #include "InspectorFrontend.h"
41 #include "InspectorInstrumentation.h" 41 #include "InspectorInstrumentation.h"
42 #include "InspectorState.h" 42 #include "InspectorState.h"
43 #include "InspectorValues.h" 43 #include "InspectorValues.h"
44 #include "InstrumentingAgents.h" 44 #include "InstrumentingAgents.h"
45 #include "Page.h" 45 #include "Page.h"
46 #include "ResourceRequest.h"
47 #include "ScriptController.h" 46 #include "ScriptController.h"
48 #include "ScriptFunctionCall.h" 47 #include "ScriptFunctionCall.h"
49 #include "ScriptObject.h" 48 #include "ScriptObject.h"
50 #include "SecurityOrigin.h" 49 #include "SecurityOrigin.h"
51 #include "Settings.h" 50 #include "Settings.h"
52 #include "core/platform/graphics/GraphicsContext.h" 51 #include "core/platform/graphics/GraphicsContext.h"
52 #include "core/platform/network/ResourceRequest.h"
53 #include <wtf/PassRefPtr.h> 53 #include <wtf/PassRefPtr.h>
54 #include <wtf/RefPtr.h> 54 #include <wtf/RefPtr.h>
55 55
56 using namespace std; 56 using namespace std;
57 57
58 namespace WebCore { 58 namespace WebCore {
59 59
60 namespace InspectorAgentState { 60 namespace InspectorAgentState {
61 static const char inspectorAgentEnabled[] = "inspectorAgentEnabled"; 61 static const char inspectorAgentEnabled[] = "inspectorAgentEnabled";
62 } 62 }
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 175
176 KURL InspectorAgent::inspectedURLWithoutFragment() const 176 KURL InspectorAgent::inspectedURLWithoutFragment() const
177 { 177 {
178 KURL url = inspectedURL(); 178 KURL url = inspectedURL();
179 url.removeFragmentIdentifier(); 179 url.removeFragmentIdentifier();
180 return url; 180 return url;
181 } 181 }
182 182
183 } // namespace WebCore 183 } // namespace WebCore
184 184
OLDNEW
« no previous file with comments | « Source/core/html/parser/XSSAuditorDelegate.cpp ('k') | Source/core/inspector/InspectorApplicationCacheAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698