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

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: Address concerns. Created 5 years, 10 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 void loaderDetachedFromFrame(DocumentLoader*); 139 void loaderDetachedFromFrame(DocumentLoader*);
140 void frameStartedLoading(LocalFrame*); 140 void frameStartedLoading(LocalFrame*);
141 void frameStoppedLoading(LocalFrame*); 141 void frameStoppedLoading(LocalFrame*);
142 void frameScheduledNavigation(LocalFrame*, double delay); 142 void frameScheduledNavigation(LocalFrame*, double delay);
143 void frameClearedScheduledNavigation(LocalFrame*); 143 void frameClearedScheduledNavigation(LocalFrame*);
144 void willRunJavaScriptDialog(const String& message); 144 void willRunJavaScriptDialog(const String& message);
145 void didRunJavaScriptDialog(); 145 void didRunJavaScriptDialog();
146 bool applyViewportStyleOverride(StyleResolver*); 146 bool applyViewportStyleOverride(StyleResolver*);
147 void applyEmulatedMedia(String*); 147 void applyEmulatedMedia(String*);
148 void didPaint(LayoutObject*, const GraphicsLayer*, GraphicsContext*, const L ayoutRect&); 148 void didPaint(LayoutObject*, const GraphicsLayer*, GraphicsContext*, const L ayoutRect&);
149 void didLayout(LayoutObject*); 149 void didLayout();
150 void didScroll(); 150 void didScroll();
151 void didResizeMainFrame(); 151 void didResizeMainFrame();
152 void didRecalculateStyle(int); 152 void didRecalculateStyle(int);
153 void scriptsEnabled(bool isEnabled); 153 void scriptsEnabled(bool isEnabled);
154 154
155 // Inspector Controller API 155 // Inspector Controller API
156 void setFrontend(InspectorFrontend*) override; 156 void setFrontend(InspectorFrontend*) override;
157 void clearFrontend() override; 157 void clearFrontend() override;
158 void restore() override; 158 void restore() override;
159 void discardAgent() override; 159 void discardAgent() override;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 226
227 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader; 227 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader;
228 HashMap<String, String> m_editedResourceContent; 228 HashMap<String, String> m_editedResourceContent;
229 }; 229 };
230 230
231 231
232 } // namespace blink 232 } // namespace blink
233 233
234 234
235 #endif // !defined(InspectorPagerAgent_h) 235 #endif // !defined(InspectorPagerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698