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

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

Issue 927773002: Keep track of multiple layout roots (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add bug link Created 5 years, 9 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
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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 void loaderDetachedFromFrame(DocumentLoader*); 136 void loaderDetachedFromFrame(DocumentLoader*);
137 void frameStartedLoading(LocalFrame*); 137 void frameStartedLoading(LocalFrame*);
138 void frameStoppedLoading(LocalFrame*); 138 void frameStoppedLoading(LocalFrame*);
139 void frameScheduledNavigation(LocalFrame*, double delay); 139 void frameScheduledNavigation(LocalFrame*, double delay);
140 void frameClearedScheduledNavigation(LocalFrame*); 140 void frameClearedScheduledNavigation(LocalFrame*);
141 void willRunJavaScriptDialog(const String& message); 141 void willRunJavaScriptDialog(const String& message);
142 void didRunJavaScriptDialog(); 142 void didRunJavaScriptDialog();
143 bool applyViewportStyleOverride(StyleResolver*); 143 bool applyViewportStyleOverride(StyleResolver*);
144 void applyEmulatedMedia(String*); 144 void applyEmulatedMedia(String*);
145 void didPaint(LayoutObject*, const GraphicsLayer*, GraphicsContext*, const L ayoutRect&); 145 void didPaint(LayoutObject*, const GraphicsLayer*, GraphicsContext*, const L ayoutRect&);
146 void didLayout(LayoutObject*); 146 void didLayout();
147 void didScroll(); 147 void didScroll();
148 void didResizeMainFrame(); 148 void didResizeMainFrame();
149 void didRecalculateStyle(int); 149 void didRecalculateStyle(int);
150 void scriptsEnabled(bool isEnabled); 150 void scriptsEnabled(bool isEnabled);
151 151
152 // Inspector Controller API 152 // Inspector Controller API
153 void setFrontend(InspectorFrontend*) override; 153 void setFrontend(InspectorFrontend*) override;
154 void clearFrontend() override; 154 void clearFrontend() override;
155 void restore() override; 155 void restore() override;
156 void discardAgent() override; 156 void discardAgent() override;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 223
224 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader; 224 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader;
225 HashMap<String, String> m_editedResourceContent; 225 HashMap<String, String> m_editedResourceContent;
226 }; 226 };
227 227
228 228
229 } // namespace blink 229 } // namespace blink
230 230
231 231
232 #endif // !defined(InspectorPagerAgent_h) 232 #endif // !defined(InspectorPagerAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.idl ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698