OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |