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

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

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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/ScrollbarGroup.cpp ('k') | Source/web/WebFontCache.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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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" 52 #include "core/frame/Frame.h"
53 #include "core/frame/FrameView.h" 53 #include "core/frame/FrameView.h"
54 #include "core/inspector/InjectedScriptHost.h" 54 #include "core/inspector/InjectedScriptHost.h"
55 #include "core/inspector/InspectorController.h" 55 #include "core/inspector/InspectorController.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"
59 #include "core/rendering/RenderView.h" 58 #include "core/rendering/RenderView.h"
60 #include "platform/JSONValues.h" 59 #include "platform/JSONValues.h"
60 #include "platform/graphics/GraphicsContext.h"
61 #include "platform/network/ResourceError.h" 61 #include "platform/network/ResourceError.h"
62 #include "platform/network/ResourceRequest.h" 62 #include "platform/network/ResourceRequest.h"
63 #include "platform/network/ResourceResponse.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"
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kProfiler_getCPUProfileCmd) 639 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kProfiler_getCPUProfileCmd)
640 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kHeapProfiler_getHeapSnapshotCmd); 640 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kHeapProfiler_getHeapSnapshotCmd);
641 } 641 }
642 642
643 void WebDevToolsAgent::processPendingMessages() 643 void WebDevToolsAgent::processPendingMessages()
644 { 644 {
645 PageScriptDebugServer::shared().runPendingTasks(); 645 PageScriptDebugServer::shared().runPendingTasks();
646 } 646 }
647 647
648 } // namespace blink 648 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/ScrollbarGroup.cpp ('k') | Source/web/WebFontCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698