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

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

Issue 1401363003: Rename DisplayItemList to PaintController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « third_party/WebKit/Source/web/PageOverlayTest.cpp ('k') | no next file » | 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 #include "modules/device_orientation/DeviceOrientationInspectorAgent.h" 77 #include "modules/device_orientation/DeviceOrientationInspectorAgent.h"
78 #include "modules/filesystem/InspectorFileSystemAgent.h" 78 #include "modules/filesystem/InspectorFileSystemAgent.h"
79 #include "modules/indexeddb/InspectorIndexedDBAgent.h" 79 #include "modules/indexeddb/InspectorIndexedDBAgent.h"
80 #include "modules/screen_orientation/ScreenOrientationInspectorAgent.h" 80 #include "modules/screen_orientation/ScreenOrientationInspectorAgent.h"
81 #include "modules/storage/InspectorDOMStorageAgent.h" 81 #include "modules/storage/InspectorDOMStorageAgent.h"
82 #include "modules/webdatabase/InspectorDatabaseAgent.h" 82 #include "modules/webdatabase/InspectorDatabaseAgent.h"
83 #include "platform/JSONValues.h" 83 #include "platform/JSONValues.h"
84 #include "platform/RuntimeEnabledFeatures.h" 84 #include "platform/RuntimeEnabledFeatures.h"
85 #include "platform/TraceEvent.h" 85 #include "platform/TraceEvent.h"
86 #include "platform/graphics/GraphicsContext.h" 86 #include "platform/graphics/GraphicsContext.h"
87 #include "platform/graphics/paint/DisplayItemList.h" 87 #include "platform/graphics/paint/PaintController.h"
88 #include "public/platform/Platform.h" 88 #include "public/platform/Platform.h"
89 #include "public/platform/WebLayerTreeView.h" 89 #include "public/platform/WebLayerTreeView.h"
90 #include "public/platform/WebRect.h" 90 #include "public/platform/WebRect.h"
91 #include "public/platform/WebString.h" 91 #include "public/platform/WebString.h"
92 #include "public/web/WebDevToolsAgentClient.h" 92 #include "public/web/WebDevToolsAgentClient.h"
93 #include "public/web/WebSettings.h" 93 #include "public/web/WebSettings.h"
94 #include "web/DevToolsEmulator.h" 94 #include "web/DevToolsEmulator.h"
95 #include "web/InspectorEmulationAgent.h" 95 #include "web/InspectorEmulationAgent.h"
96 #include "web/InspectorOverlay.h" 96 #include "web/InspectorOverlay.h"
97 #include "web/InspectorRenderingAgent.h" 97 #include "web/InspectorRenderingAgent.h"
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 if (!InspectorBackendDispatcher::getCommandName(message, &commandName)) 718 if (!InspectorBackendDispatcher::getCommandName(message, &commandName))
719 return false; 719 return false;
720 return commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_pauseCmd) 720 return commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_pauseCmd)
721 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointCmd) 721 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointCmd)
722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointByUrlCmd) 722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointByUrlCmd)
723 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_removeBreakpointCmd) 723 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_removeBreakpointCmd)
724 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointsActiveCmd); 724 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke ndDispatcher::kDebugger_setBreakpointsActiveCmd);
725 } 725 }
726 726
727 } // namespace blink 727 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/PageOverlayTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698