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

Side by Side Diff: Source/web/WebDevToolsAgentImpl.cpp

Issue 29123004: Move core/platform/network to platform/network (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: One more file Created 7 years, 2 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/web/SharedWorkerRepository.cpp ('k') | Source/web/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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "WebMemoryUsageInfo.h" 42 #include "WebMemoryUsageInfo.h"
43 #include "WebSettings.h" 43 #include "WebSettings.h"
44 #include "WebViewClient.h" 44 #include "WebViewClient.h"
45 #include "WebViewImpl.h" 45 #include "WebViewImpl.h"
46 #include "bindings/v8/PageScriptDebugServer.h" 46 #include "bindings/v8/PageScriptDebugServer.h"
47 #include "bindings/v8/ScriptController.h" 47 #include "bindings/v8/ScriptController.h"
48 #include "bindings/v8/V8Binding.h" 48 #include "bindings/v8/V8Binding.h"
49 #include "bindings/v8/V8Utilities.h" 49 #include "bindings/v8/V8Utilities.h"
50 #include "core/dom/ExceptionCode.h" 50 #include "core/dom/ExceptionCode.h"
51 #include "core/fetch/MemoryCache.h" 51 #include "core/fetch/MemoryCache.h"
52 #include "core/frame/Frame.h"
53 #include "core/frame/FrameView.h"
52 #include "core/inspector/InjectedScriptHost.h" 54 #include "core/inspector/InjectedScriptHost.h"
53 #include "core/inspector/InspectorController.h" 55 #include "core/inspector/InspectorController.h"
54 #include "core/frame/Frame.h"
55 #include "core/frame/FrameView.h"
56 #include "core/page/Page.h" 56 #include "core/page/Page.h"
57 #include "core/page/PageGroup.h" 57 #include "core/page/PageGroup.h"
58 #include "core/platform/graphics/GraphicsContext.h" 58 #include "core/platform/graphics/GraphicsContext.h"
59 #include "core/platform/network/ResourceRequest.h"
60 #include "core/platform/network/ResourceResponse.h"
61 #include "core/rendering/RenderView.h" 59 #include "core/rendering/RenderView.h"
62 #include "platform/JSONValues.h" 60 #include "platform/JSONValues.h"
63 #include "platform/network/ResourceError.h" 61 #include "platform/network/ResourceError.h"
62 #include "platform/network/ResourceRequest.h"
63 #include "platform/network/ResourceResponse.h"
64 #include "public/platform/Platform.h" 64 #include "public/platform/Platform.h"
65 #include "public/platform/WebRect.h" 65 #include "public/platform/WebRect.h"
66 #include "public/platform/WebString.h" 66 #include "public/platform/WebString.h"
67 #include "public/platform/WebURL.h" 67 #include "public/platform/WebURL.h"
68 #include "public/platform/WebURLError.h" 68 #include "public/platform/WebURLError.h"
69 #include "public/platform/WebURLRequest.h" 69 #include "public/platform/WebURLRequest.h"
70 #include "public/platform/WebURLResponse.h" 70 #include "public/platform/WebURLResponse.h"
71 #include "wtf/CurrentTime.h" 71 #include "wtf/CurrentTime.h"
72 #include "wtf/MathExtras.h" 72 #include "wtf/MathExtras.h"
73 #include "wtf/Noncopyable.h" 73 #include "wtf/Noncopyable.h"
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack endDispatcher::kProfiler_getCPUProfileCmd] 580 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack endDispatcher::kProfiler_getCPUProfileCmd]
581 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack endDispatcher::kHeapProfiler_getHeapSnapshotCmd]; 581 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack endDispatcher::kHeapProfiler_getHeapSnapshotCmd];
582 } 582 }
583 583
584 void WebDevToolsAgent::processPendingMessages() 584 void WebDevToolsAgent::processPendingMessages()
585 { 585 {
586 PageScriptDebugServer::shared().runPendingTasks(); 586 PageScriptDebugServer::shared().runPendingTasks();
587 } 587 }
588 588
589 } // namespace WebKit 589 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/web/SharedWorkerRepository.cpp ('k') | Source/web/WebFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698