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

Side by Side Diff: Source/core/inspector/InspectorController.h

Issue 662603002: [DevTools] Adjust svg elements highlight to the root FrameView origin. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed review comments Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 void deviceOrPageScaleFactorChanged(); 110 void deviceOrPageScaleFactorChanged();
111 bool deviceEmulationEnabled(); 111 bool deviceEmulationEnabled();
112 bool screencastEnabled(); 112 bool screencastEnabled();
113 113
114 bool isUnderTest(); 114 bool isUnderTest();
115 void evaluateForTestInFrontend(long callId, const String& script); 115 void evaluateForTestInFrontend(long callId, const String& script);
116 116
117 void resume(); 117 void resume();
118 118
119 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize , int maximumSingleResourceContentSize); 119 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize , int maximumSingleResourceContentSize);
120 PassRefPtr<JSONObject> highlightJSONForNode(Node*);
120 121
121 void willProcessTask(); 122 void willProcessTask();
122 void didProcessTask(); 123 void didProcessTask();
123 void flushPendingFrontendMessages(); 124 void flushPendingFrontendMessages();
124 125
125 void didCommitLoadForMainFrame(); 126 void didCommitLoadForMainFrame();
126 void didBeginFrame(int frameId); 127 void didBeginFrame(int frameId);
127 void didCancelFrame(); 128 void didCancelFrame();
128 void willComposite(); 129 void willComposite();
129 void didComposite(); 130 void didComposite();
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 InspectorAgentRegistry m_agents; 165 InspectorAgentRegistry m_agents;
165 bool m_isUnderTest; 166 bool m_isUnderTest;
166 bool m_deferredAgentsInitialized; 167 bool m_deferredAgentsInitialized;
167 String m_hostId; 168 String m_hostId;
168 }; 169 };
169 170
170 } 171 }
171 172
172 173
173 #endif // !defined(InspectorController_h) 174 #endif // !defined(InspectorController_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698