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

Side by Side Diff: Source/WebKit/chromium/src/WebDevToolsAgentImpl.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
« no previous file with comments | « Source/WebKit/chromium/src/WebBlobData.cpp ('k') | Source/WebKit/chromium/src/WebFrameImpl.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) 2010-2011 Google Inc. All rights reserved. 2 * Copyright (C) 2010-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 27 matching lines...) Expand all
38 #include "InspectorBackendDispatcher.h" 38 #include "InspectorBackendDispatcher.h"
39 #include "InspectorController.h" 39 #include "InspectorController.h"
40 #include "InspectorFrontend.h" 40 #include "InspectorFrontend.h"
41 #include "InspectorProtocolVersion.h" 41 #include "InspectorProtocolVersion.h"
42 #include "InspectorValues.h" 42 #include "InspectorValues.h"
43 #include "MemoryCache.h" 43 #include "MemoryCache.h"
44 #include "Page.h" 44 #include "Page.h"
45 #include "PageGroup.h" 45 #include "PageGroup.h"
46 #include "PageScriptDebugServer.h" 46 #include "PageScriptDebugServer.h"
47 #include "RenderView.h" 47 #include "RenderView.h"
48 #include "ResourceError.h"
49 #include "ResourceRequest.h"
50 #include "ResourceResponse.h"
51 #include "ScriptController.h" 48 #include "ScriptController.h"
52 #include "V8Binding.h" 49 #include "V8Binding.h"
53 #include "V8Utilities.h" 50 #include "V8Utilities.h"
54 #include "WebDataSource.h" 51 #include "WebDataSource.h"
55 #include "WebDevToolsAgentClient.h" 52 #include "WebDevToolsAgentClient.h"
56 #include "WebFrameImpl.h" 53 #include "WebFrameImpl.h"
57 #include "WebMemoryUsageInfo.h" 54 #include "WebMemoryUsageInfo.h"
58 #include "WebViewClient.h" 55 #include "WebViewClient.h"
59 #include "WebViewImpl.h" 56 #include "WebViewImpl.h"
60 #include "core/platform/graphics/GraphicsContext.h" 57 #include "core/platform/graphics/GraphicsContext.h"
58 #include "core/platform/network/ResourceError.h"
59 #include "core/platform/network/ResourceRequest.h"
60 #include "core/platform/network/ResourceResponse.h"
61 #include "painting/GraphicsContextBuilder.h" 61 #include "painting/GraphicsContextBuilder.h"
62 #include <public/Platform.h> 62 #include <public/Platform.h>
63 #include <public/WebRect.h> 63 #include <public/WebRect.h>
64 #include <public/WebString.h> 64 #include <public/WebString.h>
65 #include <public/WebURL.h> 65 #include <public/WebURL.h>
66 #include <public/WebURLError.h> 66 #include <public/WebURLError.h>
67 #include <public/WebURLRequest.h> 67 #include <public/WebURLRequest.h>
68 #include <public/WebURLResponse.h> 68 #include <public/WebURLResponse.h>
69 #include <wtf/CurrentTime.h> 69 #include <wtf/CurrentTime.h>
70 #include <wtf/MathExtras.h> 70 #include <wtf/MathExtras.h>
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 resultObject->setString("data", hintData); 837 resultObject->setString("data", hintData);
838 break; 838 break;
839 case BrowserDataHintNone: 839 case BrowserDataHintNone:
840 default: 840 default:
841 ASSERT_NOT_REACHED(); 841 ASSERT_NOT_REACHED();
842 } 842 }
843 return messageObject->toJSONString(); 843 return messageObject->toJSONString();
844 } 844 }
845 845
846 } // namespace WebKit 846 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebBlobData.cpp ('k') | Source/WebKit/chromium/src/WebFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698