Index: third_party/WebKit/Source/core/page/Page.h |
diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h |
index efc713b8d1a58f18c57bf2e4c221dac97b8b7d98..8a58fdef6ea6483839b680170a6ff35d74fc78ea 100644 |
--- a/third_party/WebKit/Source/core/page/Page.h |
+++ b/third_party/WebKit/Source/core/page/Page.h |
@@ -198,7 +198,12 @@ public: |
bool isPainting() const { return m_isPainting; } |
#endif |
- void didCommitLoad(LocalFrame*); |
+ // Invoked once when the main load for a page is committed. |
+ void didCommitLoad(); |
+ |
+ // Loaded a document into the specified frame. May be invoked multiple times for |
+ // a given frame (eg. for each SVG document). |
+ void deprecatedDidCommitFrameLoad(LocalFrame*); |
void acceptLanguagesChanged(); |