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

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

Issue 146693005: Clarify when what notifications are send when a window object is cleared (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates Created 6 years, 7 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 virtual void setShowFPSCounter(ErrorString*, bool show) OVERRIDE; 111 virtual void setShowFPSCounter(ErrorString*, bool show) OVERRIDE;
112 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled) OVERRI DE; 112 virtual void setContinuousPaintingEnabled(ErrorString*, bool enabled) OVERRI DE;
113 virtual void setShowScrollBottleneckRects(ErrorString*, bool show) OVERRIDE; 113 virtual void setShowScrollBottleneckRects(ErrorString*, bool show) OVERRIDE;
114 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu lt::Enum*) OVERRIDE; 114 virtual void getScriptExecutionStatus(ErrorString*, PageCommandHandler::Resu lt::Enum*) OVERRIDE;
115 virtual void setScriptExecutionDisabled(ErrorString*, bool) OVERRIDE; 115 virtual void setScriptExecutionDisabled(ErrorString*, bool) OVERRIDE;
116 virtual void setTouchEmulationEnabled(ErrorString*, bool) OVERRIDE; 116 virtual void setTouchEmulationEnabled(ErrorString*, bool) OVERRIDE;
117 virtual void setEmulatedMedia(ErrorString*, const String&) OVERRIDE; 117 virtual void setEmulatedMedia(ErrorString*, const String&) OVERRIDE;
118 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool * showGrid) OVERRIDE; 118 virtual void setShowViewportSizeOnResize(ErrorString*, bool show, const bool * showGrid) OVERRIDE;
119 119
120 // InspectorInstrumentation API 120 // InspectorInstrumentation API
121 void didClearWindowObjectInMainWorld(LocalFrame*); 121 void didClearDocumentOfWindowObject(LocalFrame*);
122 void domContentLoadedEventFired(LocalFrame*); 122 void domContentLoadedEventFired(LocalFrame*);
123 void loadEventFired(LocalFrame*); 123 void loadEventFired(LocalFrame*);
124 void didCommitLoad(LocalFrame*, DocumentLoader*); 124 void didCommitLoad(LocalFrame*, DocumentLoader*);
125 void frameAttachedToParent(LocalFrame*); 125 void frameAttachedToParent(LocalFrame*);
126 void frameDetachedFromParent(LocalFrame*); 126 void frameDetachedFromParent(LocalFrame*);
127 void loaderDetachedFromFrame(DocumentLoader*); 127 void loaderDetachedFromFrame(DocumentLoader*);
128 void frameStartedLoading(LocalFrame*); 128 void frameStartedLoading(LocalFrame*);
129 void frameStoppedLoading(LocalFrame*); 129 void frameStoppedLoading(LocalFrame*);
130 void frameScheduledNavigation(LocalFrame*, double delay); 130 void frameScheduledNavigation(LocalFrame*, double delay);
131 void frameClearedScheduledNavigation(LocalFrame*); 131 void frameClearedScheduledNavigation(LocalFrame*);
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 200
201 bool m_embedderTextAutosizingEnabled; 201 bool m_embedderTextAutosizingEnabled;
202 double m_embedderFontScaleFactor; 202 double m_embedderFontScaleFactor;
203 }; 203 };
204 204
205 205
206 } // namespace WebCore 206 } // namespace WebCore
207 207
208 208
209 #endif // !defined(InspectorPagerAgent_h) 209 #endif // !defined(InspectorPagerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698